/* Variables & Reset */
:root {
    --primary-color: #c8a97e;
    --primary-dark: #b08d5c;
    --dark-bg: #111111;
    --light-bg: #fdfcfb;
    --gray-bg: #f5f5f5;
    --text-main: #333333;
    --text-light: #666666;
    --white: #ffffff;
    
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.mt-4 {
    margin-top: 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-bg);
    position: relative;
    padding-bottom: 1rem;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
}

.section-header.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.subtitle {
    display: block;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    border-radius: 2px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(200, 169, 126, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--dark-bg);
    border: 1px solid var(--dark-bg);
}

.btn-outline:hover {
    background-color: var(--dark-bg);
    color: var(--white);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
}

.navbar.scrolled .logo {
    color: var(--dark-bg);
}

.logo-icon {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    line-height: 1;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 4px;
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    font-weight: 500;
    position: relative;
}

.navbar.scrolled .nav-links a {
    color: var(--text-main);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-social a {
    color: var(--white);
}

.navbar.scrolled .nav-social a {
    color: var(--dark-bg);
}

.nav-social a:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
}

.navbar.scrolled .mobile-menu-btn {
    color: var(--dark-bg);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../assets/images/gurre_hero.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 100%);
}

.hero-content-split {
    position: absolute;
    bottom: 50px;
    left: 0;
    width: 100%;
    padding: 0 6%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 1;
    color: var(--white);
    animation: fadeInUp 1.2s ease-out;
}

.hero-text {
    text-align: left;
    max-width: 60%;
}

.hero-text h1 {
    font-size: 2.6rem;
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
    font-weight: 400;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 0;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero-action {
    text-align: right;
    margin-bottom: 10px; /* Align visually with text */
}

@media (max-width: 768px) {
    .hero-content-split {
        flex-direction: column;
        align-items: flex-start;
        bottom: 30px;
    }
    .hero-text {
        max-width: 100%;
        margin-bottom: 2rem;
    }
    .hero-action {
        text-align: left;
    }
}

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

/* About Section */
.about {
    padding: 8rem 0;
    background-color: var(--light-bg);
}

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

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.05rem;
}

.about-image-wrapper {
    position: relative;
    padding: 2rem 2rem 0 0;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 100%;
    background-color: var(--primary-color);
    z-index: 0;
}

.about-image {
    position: relative;
    z-index: 1;
    box-shadow: -20px 20px 40px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Brands Section */
.brands {
    padding: 6rem 0;
    background-color: var(--white);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.brand-card {
    padding: 3rem 2rem;
    background-color: var(--gray-bg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
}

.brand-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-main);
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: var(--transition);
}

.brand-logo {
    max-width: 140px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: grayscale(100%) opacity(60%);
}

.brand-card:hover .brand-logo {
    filter: grayscale(0%) opacity(100%);
    transform: scale(1.05);
}

.brand-card:hover {
    background-color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.brand-card:hover h3 {
    color: var(--primary-color);
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background-color: var(--light-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4/5;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay span {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* Footer */
.footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    margin-top: 1.5rem;
    color: #999;
    max-width: 300px;
}

.footer h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.footer ul li {
    margin-bottom: 1rem;
}

.footer ul a {
    color: #999;
    display: inline-block;
}

.footer ul a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: #999;
}

.footer-contact ul li i {
    color: var(--primary-color);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    text-align: center;
    color: #666;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid, .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-social {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .brand-card {
        padding: 2rem 1rem;
    }
}

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

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


/* Contact Page Specific */
.page-header {
    padding: 10rem 0 4rem;
    background-color: var(--light-bg);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--dark-bg);
    margin-bottom: 1rem;
}

.contact-section {
    padding: 4rem 0 6rem;
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-card {
    background-color: var(--gray-bg);
    padding: 3rem;
    border-radius: 4px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-bg);
}

.contact-details p, .contact-details a {
    color: var(--text-light);
    font-size: 1rem;
}

.contact-details a:hover {
    color: var(--primary-color);
}

.contact-map {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: block;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-map iframe {
        height: 400px;
    }
}


.instagram-gradient {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: white !important;
    border: none;
    box-shadow: 0 5px 15px rgba(214, 36, 159, 0.3);
}


.footer-slogan {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-style: italic;
    font-size: 1.1rem;
    margin-top: 1.5rem !important;
    margin-bottom: 0.5rem !important;
    letter-spacing: 1px;
}


.header-logo {
    max-height: 55px;
    width: auto;
}
.footer-logo-img {
    max-height: 100px;
    width: auto;
    margin-bottom: 1rem;
}


/* Animated Scroll Mouse */
.hero-scroll {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: fadeInUp 1.5s ease-out;
}

.hero-scroll a {
    display: inline-block;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--white);
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
}

.mouse:hover {
    opacity: 1;
    transform: translateY(3px);
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    margin-left: -2px; /* Center perfectly */
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0% {
        top: 6px;
        opacity: 1;
    }
    100% {
        top: 20px;
        opacity: 0;
    }
}


.tergan-logo {
    min-width: 180px !important;
    mix-blend-mode: multiply;
    object-fit: cover;
}

