:root {
    /* Haki Theme - Military Khaki (Default) */
    --gold: #C9A84C;
    --gold-light: #E5D18A;
    --gold-dark: #9A7B32;
    --black: #2B2B1D;
    --black-light: #3A3A28;
    --black-lighter: #4A4A35;
    --gray: #8B8B6E;
    --gray-light: #B5B594;
    --white: #F0EDE4;
    
    /* Accent colors */
    --accent: var(--gold);
    --accent-light: var(--gold-light);
    --accent-dark: var(--gold-dark);
}


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 4px;
}

/* Loader */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-diamond {
    width: 80px;
    height: 80px;
    position: relative;
    animation: rotateDiamond 3s ease-in-out infinite;
}

.loader-diamond svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px var(--gold));
}

@keyframes rotateDiamond {
    0% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.1); }
    50% { transform: rotate(180deg) scale(1); }
    75% { transform: rotate(270deg) scale(1.1); }
    100% { transform: rotate(360deg) scale(1); }
}

.loader-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    letter-spacing: 0.5em;
    color: var(--gold);
    margin-top: 30px;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.4s ease;
    background: transparent;
}

nav.scrolled {
    background: rgba(43, 43, 29, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 60px;
    box-shadow: 0 2px 30px rgba(201, 168, 76, 0.1);
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--gold);
    text-decoration: none;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.logo:hover::after {
    transform: scaleX(1);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: #B5B594;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.nav-links a.active {
    color: var(--gold);
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::before,
.nav-links a.active::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    display: block;
}

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

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

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

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to bottom, rgba(43, 43, 29, 0.6) 0%, rgba(43, 43, 29, 0.4) 50%, rgba(43, 43, 29, 0.8) 100%),
        radial-gradient(ellipse at 20% 80%, rgba(201, 168, 76, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(201, 168, 76, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7) contrast(1.1);
    animation: slowZoom 20s ease-in-out infinite alternate;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: float 8s infinite ease-in-out;
}

@keyframes float {
    0%, 100% {
        opacity: 0;
        transform: translateY(100vh) rotate(0deg);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(-100vh) rotate(720deg);
    }
}

.hero-content {
    text-align: center;
    z-index: 1;
    padding: 0 20px;
    max-width: 900px;
}

.hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    opacity: 0;
    animation: slideUp 1s ease forwards 0.5s;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 8vw, 7rem);
    font-weight: 300;
    letter-spacing: 0.2em;
    margin-bottom: 30px;
    opacity: 0;
    animation: slideUp 1s ease forwards 0.8s;
}

.hero-title span {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-line {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 30px auto;
    opacity: 0;
    animation: expandLine 1s ease forwards 1.1s;
}

@keyframes expandLine {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 100px;
        opacity: 1;
    }
}

.hero-description {
    font-size: 1rem;
    font-weight: 300;
    color: var(--gray-light);
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: slideUp 1s ease forwards 1.4s;
    line-height: 1.8;
}

.hero-btn {
    display: inline-block;
    padding: 16px 40px;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    animation: slideUp 1s ease forwards 1.7s;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: left 0.4s ease;
    z-index: -1;
}

.hero-btn:hover {
    color: var(--black);
}

.hero-btn:hover::before {
    left: 0;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeIn 1s ease forwards 2s;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gray);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* Page Header (for sub pages) */
.page-header {
    height: 50vh;
    min-height: 400px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: 
        radial-gradient(ellipse at 30% 70%, rgba(201, 168, 76, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 30%, rgba(201, 168, 76, 0.05) 0%, transparent 50%),
        #2B2B1D;
}

.page-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, #2B2B1D, transparent);
    z-index: 1;
}

.page-header-content {
    text-align: center;
    z-index: 2;
    padding: 0 20px;
}

.page-header .hero-subtitle {
    animation-delay: 0.2s;
}

.page-header .hero-title {
    animation-delay: 0.4s;
    font-size: clamp(2rem, 6vw, 5rem);
}

.page-header .hero-line {
    animation-delay: 0.6s;
}

/* Section Styles */
section {
    padding: 100px 60px;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    font-size: 0.8rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.section-line {
    width: 80px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

/* About Section */
.about {
    background: var(--black-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--gold);
    z-index: 1;
    transition: all 0.5s ease;
}

.about-image:hover::before {
    top: -30px;
    left: -30px;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(30%);
    transition: all 0.5s ease;
}

.about-image:hover .about-img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.about-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--black-lighter) 0%, var(--black) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-placeholder svg {
    width: 120px;
    height: 120px;
    opacity: 0.3;
}

.about-content {
    overflow: hidden;
    max-width: 100%;
}

.about-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 25px;
    color: var(--gold-light);
}

.about-content p {
    color: var(--gray-light);
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-top: 35px;
    width: 100%;
    overflow: hidden;
}

.feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    max-width: 100%;
    overflow: hidden;
}

.feature-icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--gold);
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    background: var(--gold);
}

.feature:hover .feature-icon svg {
    fill: var(--black);
}

.feature-text h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.feature-text p {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
}

/* Products Section */
.products {
    background: var(--black);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.product-image {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--black-lighter) 0%, var(--black-light) 100%);
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 50%);
    z-index: 1;
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.product-placeholder svg {
    width: 60px;
    height: 60px;
    opacity: 0.25;
    transition: all 0.5s ease;
}

.product-card:hover .product-placeholder svg {
    opacity: 0.5;
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.1);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    z-index: 3;
    transform: translateY(10px);
    transition: transform 0.5s ease;
}

.product-card:hover .product-info {
    transform: translateY(0);
}

.product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 5px;
    color: var(--white);
}

.product-category {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
}

.product-line {
    width: 0;
    height: 1px;
    background: var(--gold);
    margin-top: 15px;
    transition: width 0.5s ease;
}

.product-card:hover .product-line {
    width: 50px;
}

/* Gallery Section */
.gallery {
    background: var(--black-light);
    padding: 0;
}

.gallery-header {
    padding: 100px 60px 60px;
    background: var(--black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--black-lighter) 0%, var(--black) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.gallery-placeholder svg {
    width: 50px;
    height: 50px;
    opacity: 0.2;
    transition: all 0.5s ease;
}

.gallery-item:hover .gallery-placeholder svg {
    opacity: 0.5;
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-icon {
    transform: scale(1);
}

/* Blog Section */
.blog {
    background: var(--black);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--black-light);
    overflow: hidden;
    transition: all 0.5s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.blog-image {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, var(--black-lighter) 0%, var(--black) 100%);
    position: relative;
    overflow: hidden;
}

.blog-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.blog-placeholder svg {
    width: 50px;
    height: 50px;
    opacity: 0.2;
    transition: all 0.5s ease;
}

.blog-card:hover .blog-placeholder svg {
    opacity: 0.4;
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-date {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.blog-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-title {
    color: var(--gold);
}

.blog-excerpt {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: gap 0.3s ease;
}

.blog-link:hover {
    gap: 20px;
}

/* Contact Section */
.contact {
    background: var(--black-light);
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    overflow: hidden;
}

.contact-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 25px;
    color: var(--gold-light);
}

.contact-info > p {
    color: var(--gray-light);
    margin-bottom: 35px;
    font-weight: 300;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    max-width: 100%;
    overflow: hidden;
}

.contact-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
    transition: all 0.3s ease;
}

.contact-icon svg path {
    fill: var(--gold);
}

.contact-icon svg circle,
.contact-icon svg polyline {
    fill: none;
    stroke: var(--gold);
    stroke-width: 2;
}

.contact-item:hover .contact-icon {
    background: var(--gold);
}

.contact-item:hover .contact-icon svg path {
    fill: var(--black);
}

.contact-item:hover .contact-icon svg circle,
.contact-item:hover .contact-icon svg polyline {
    stroke: var(--black);
}

.contact-text h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 5px;
}

.contact-text {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.contact-text p {
    font-size: 0.9rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.6;
    word-wrap: break-word;
}

.contact-text a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--gold);
}

.contact-form {
    background: var(--black);
    padding: 40px;
    overflow: hidden;
    max-width: 100%;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--black-light);
    border: 1px solid var(--black-lighter);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-btn {
    width: 100%;
    padding: 18px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.form-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: left 0.4s ease;
    z-index: -1;
}

.form-btn:hover {
    color: var(--black);
}

.form-btn:hover::before {
    left: 0;
}

/* Map Section */
.map {
    height: 400px;
    background: linear-gradient(135deg, var(--black-lighter) 0%, var(--black) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.map-placeholder {
    text-align: center;
}

.map-icon {
    margin-bottom: 20px;
    animation: pulse 2s ease-in-out infinite;
}

.map-icon svg {
    width: 60px;
    height: 60px;
    opacity: 0.4;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.map-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--gray);
}

/* Footer */
footer {
    background: var(--black);
    padding: 80px 60px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto 60px;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: var(--gold);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold);
}

.social-link:hover svg {
    fill: var(--black);
}

.footer-links h4 {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 10px;
}

.footer-bottom {
    border-top: 1px solid var(--black-lighter);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
}

.developer-link {
    display: inline-flex;
    align-items: center;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.developer-link:hover {
    opacity: 1;
}

.developer-logo {
    height: 20px;
    width: auto;
    filter: brightness(0) invert(1);
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s ease;
}

.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

/* Content Styles */
.content-section {
    background: var(--black);
}

.content-block {
    margin-bottom: 40px;
}

.content-block h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--gold-light);
}

.content-block p {
    color: var(--gray-light);
    line-height: 1.9;
    margin-bottom: 15px;
}

.content-block ul {
    color: var(--gray-light);
    padding-left: 20px;
    margin-bottom: 20px;
}

.content-block li {
    margin-bottom: 10px;
    line-height: 1.7;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--gold);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--black-lighter);
}

.timeline-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -44px;
    top: 5px;
    width: 9px;
    height: 9px;
    background: var(--gold);
    border-radius: 50%;
}

.timeline-year {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 10px;
}

.timeline-title {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.timeline-text {
    color: var(--gray);
    line-height: 1.7;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: var(--black-light);
    padding: 35px;
    text-align: center;
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.value-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--gold);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--gold);
}

.value-card:hover .value-icon svg {
    fill: var(--black);
}

.value-card h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.value-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Blog Single */
.blog-single {
    max-width: 900px;
    margin: 0 auto;
}

.blog-single-header {
    text-align: center;
    margin-bottom: 40px;
}

.blog-single-date {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
}

.blog-single-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 20px;
}

.blog-single-image {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, var(--black-lighter) 0%, var(--black) 100%);
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-single-image svg {
    width: 80px;
    height: 80px;
    opacity: 0.2;
}

.blog-single-content {
    color: var(--gray-light);
    line-height: 1.9;
}

.blog-single-content p {
    margin-bottom: 20px;
}

.blog-single-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--white);
    margin: 40px 0 20px;
}

.blog-single-content blockquote {
    border-left: 3px solid var(--gold);
    padding-left: 25px;
    margin: 30px 0;
    font-style: italic;
    color: var(--gold-light);
    font-size: 1.1rem;
}

/* Theme Switcher (disabled) */
.theme-switcher {
    display: none !important;
}

/* Theme transition */
body,
.hero-bg::before,
.loader,
nav,
.logo,
.nav-links a,
.hero-btn,
.section-tag,
.section-line,
.about-image::before,
.feature-icon,
.product-overlay,
.product-category,
.product-line,
.gallery-overlay,
.blog-date,
.blog-link,
.contact-icon,
.form-btn,
.social-link,
.footer-bottom a,
.value-icon,
.timeline::before,
.timeline-item::before,
.timeline-year {
    transition: all 0.4s ease;
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    section {
        padding: 80px 40px;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    nav {
        padding: 15px 25px;
    }

    nav.scrolled {
        padding: 12px 25px;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 320px;
        height: 100vh;
        background: var(--black);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1rem;
    }

    section {
        padding: 70px 25px;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        height: 350px;
        order: -1;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-header {
        padding: 70px 25px 50px;
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 1.6rem;
    }

    section {
        padding: 60px 20px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3px;
    }

    .gallery-item.large {
        grid-column: span 1;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature {
        gap: 15px;
    }

    .feature-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        flex-shrink: 0;
    }

    .feature-icon svg {
        width: 20px;
        height: 20px;
    }

    .feature-text {
        flex: 1;
        min-width: 0;
    }

    .feature-text h4 {
        font-size: 0.95rem;
    }

    .feature-text p {
        font-size: 0.8rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .page-header {
        height: 40vh;
        min-height: 300px;
    }

    .hero {
        min-height: 100vh;
    }

    .scroll-indicator {
        bottom: 25px;
    }

    .map {
        height: 300px;
    }

    footer {
        padding: 60px 20px 30px;
    }

    .gallery-header {
        padding: 60px 20px 40px;
    }

    .timeline {
        padding-left: 30px;
    }

    .timeline-item::before {
        left: -34px;
    }
}

@media (max-width: 480px) {
    .hero-btn {
        padding: 14px 30px;
        font-size: 0.8rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .about-image::before {
        top: -10px;
        left: -10px;
        right: 10px;
        bottom: 10px;
    }

    .contact-item {
        flex-direction: row;
        gap: 12px;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .contact-icon svg {
        width: 18px;
        height: 18px;
    }

    .contact-text h4 {
        font-size: 0.9rem;
    }

    .contact-text p {
        font-size: 0.8rem;
    }

    .about-features {
        gap: 12px;
    }

    .feature {
        flex-direction: row;
        text-align: left;
        gap: 12px;
    }

    .feature-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        flex-shrink: 0;
    }

    .feature-icon svg {
        width: 18px;
        height: 18px;
    }

    .feature-text {
        flex: 1;
        min-width: 0;
        overflow: hidden;
    }

    .feature-text h4 {
        font-size: 0.85rem;
    }

    .feature-text p {
        font-size: 0.75rem;
    }

    .product-info {
        padding: 20px;
    }

    .product-name {
        font-size: 1.2rem;
    }
}

