* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f6f5f3;
    color: #111;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

/* Slideshow Styles */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slideshow-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-name {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    color: rgb(255, 255, 255);
    font-size: 50px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    z-index: 11;
}

.enter-btn {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 40px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    text-decoration: none;
    font-size: 18px;
    letter-spacing: 2px;
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.enter-btn:hover {
    background-color: rgba(0, 0, 0, 0.9);
    transform: translateX(-50%) scale(1.05);
}

/* Layout */
.layout {
    display: flex;
    min-height: 100vh;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1002;
    background: none;
    border: none;
    padding: 0;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: #111;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile menu backdrop */
body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

body.menu-open .hamburger {
    z-index: 1002;
}

@media (max-width: 768px) {
    body.menu-open::before {
        display: block;
    }
}

/* Sidebar */
.sidebar {
    width: 260px;
    padding: 40px 30px;
    position: fixed;
    height: 100vh;
    background: white;
    z-index: 1000;
    overflow-y: auto;
}

    .sidebar h1 {
        font-size: 30px;
        letter-spacing: 1px;
        margin-bottom: 40px;
    }

        .sidebar h1 span {
            font-weight: none;
            font-size: 24px;
        }

    /* Navigation */
    .sidebar nav a,
    .sidebar nav span {
        display: block;
        text-decoration: none;
        color: #111;
        font-size: 20px;
        margin-bottom: 10px;
    }

    .sidebar nav span {
        margin-top: 20px;
        font-weight: normal;
    }

    .sidebar nav a {
        padding-left: 10px;
        opacity: 0.7;
    }

        .sidebar nav a:hover,
        .sidebar nav a.active {
            opacity: 1;
        }

    .nav-toggle {
        cursor: pointer;
        opacity: 1 !important;
    }

    .ceramic-link.hidden {
        display: none;
    }

/* Content area */
.content {
    margin-left: 260px;
    padding: 40px;
    width: calc(100% - 260px);
}

/* Image grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

    .image-grid img {
        width: 100%;
        height: 400px;
        object-fit: cover;
        object-position: center;
        background: #eee;
        border-radius: 8px;
    }

    @media (max-width: 1200px) {
        .image-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

@media (max-width: 768px) {
    .image-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile layout */
    .layout {
        flex-direction: column;
    }
    
    .hamburger {
        display: flex;
    }
    
    .sidebar {
        width: 100%;
        height: auto;
        position: fixed;
        top: 0;
        left: -100%;
        padding: 80px 30px 30px 30px;
        transition: left 0.3s ease;
        max-height: 100vh;
    }
    
    .sidebar.active {
        left: 0;
    }
    
    .sidebar h1 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .sidebar h1 span {
        font-size: 18px;
    }
    
    .sidebar nav a,
    .sidebar nav span {
        font-size: 18px;
        margin-bottom: 15px;
        padding: 10px 0;
    }
    
    .content {
        margin-left: 0;
        width: 100%;
        padding: 20px;
        padding-top: 20px;
    }
    
    .image-grid {
        gap: 20px;
    }
    
    .image-grid img {
        height: 250px;
    }
    
    .hero-name {
        font-size: 32px;
        top: 80px;
    }
    
    .enter-btn {
        padding: 12px 30px;
        font-size: 14px;
        bottom: 30px;
    }
    
    .blog-article {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .blog-article h3 {
        font-size: 20px;
    }
    
    .blog-article img {
        float: none;
        margin: 0 0 20px 0;
        max-width: 100%;
    }
    
    .blog-article p {
        font-size: 14px;
    }
    
    .form-group label,
    .form-group input,
    .form-group textarea {
        font-size: 16px;
    }
    
    .submit-btn,
    .read-button {
        font-size: 14px;
        padding: 12px 24px;
    }
}

@media (max-width: 480px) {
    .hero-name {
        font-size: 24px;
        top: 60px;
    }
    
    .sidebar h1 {
        font-size: 20px;
    }
    
    .sidebar h1 span {
        font-size: 16px;
    }
    
    .sidebar nav a,
    .sidebar nav span {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .content {
        padding: 15px;
    }
    
    .image-grid {
        gap: 15px;
    }
    
    .image-grid img {
        height: 200px;
    }
    
    h2 {
        font-size: 20px;
    }
    
    .blog-article {
        padding: 15px;
    }
}
/* Full-image variant for specific items (no cropping) */
.image-grid img.full-image {
    height: 400px;
    object-fit: contain;
    object-position: center;
    background: #eee;
}
/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: bold;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-family: inherit;
        font-size: 14px;
    }

    .form-group textarea {
        resize: vertical;
    }

.submit-btn {
    padding: 12px 30px;
    background-color: #111;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

    .submit-btn:hover {
        background-color: #333;
    }

/* Blog Article Styles */
.blog-article {
    background: white;
    padding: 30px;
    margin-bottom: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: auto;
}

.blog-article h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #111;
}

.blog-article img {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    object-position: center;
    background: #eee;
    margin: 0 20px 20px 0;
    border-radius: 8px;
    float: left;
}

.blog-article p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    font-size: 16px;
}

.read-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #111;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.read-button:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* About Section Styles */
.about-section {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-top: 20px;
}

.about-image {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.about-text {
    flex: 1;
}

.about-text p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
    }
    
    .about-image {
        width: 100%;
        max-width: 400px;
    }
}
