/* Color Variables */
:root {
    /* Primary Colors (60%) - Backgrounds */
    --color-primary-bg: #FFFFFF;        /* Pure white */
    --color-secondary-bg: #F5F5F5;      /* Light grey */
    --color-tertiary-bg: #E8E8E8;       /* Medium light grey */
    
    /* Text Colors */
    --color-primary-text: #1A1A1A;      /* Near black */
    --color-secondary-text: #4A4A4A;    /* Dark grey */
    --color-muted-text: #757575;        /* Medium grey */
    
    /* Accent Colors (10%) */
    --color-accent-dark: #000000;       /* Pure black */
    --color-accent-light: #CCCCCC;      /* Light grey accent */
    
    /* Borders */
    --color-border: #D0D0D0;            /* Subtle grey border */
    --color-border-dark: #999999;       /* Darker border */
    
    /* Gradients */
    --gradient-primary: linear-gradient(90deg, #2A2A2A, #000000);
    --gradient-secondary: linear-gradient(135deg, #F5F5F5, #E8E8E8);
    --gradient-button: linear-gradient(45deg, #1A1A1A, #000000);
    
    /* Transparencies */
    --overlay-dark: rgba(0, 0, 0, 0.7);
    --overlay-light: rgba(255, 255, 255, 0.9);
    --shadow-default: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.2);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--color-primary-text);
    background: var(--color-primary-bg);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Sabon', serif;
    font-weight: 600;
    line-height: 1.2;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--color-accent-dark);
}


/* Top Navigation */
.top-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--color-primary-bg);
    border-bottom: 1px solid var(--color-border);
    z-index: 1000;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Hero Section */
.hero {
    background: var(--color-primary-bg);
    padding: 40px 0;
    margin-top: 60px; /* Add margin to account for fixed nav */
}

.hero-content {
    text-align: center;
    width: 100%;
}

.hero-title {
    font-size: 3.5rem;
    margin: 0;
    color: var(--color-primary-text);
    letter-spacing: 1px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.title-main {
    font-weight: 700;
    font-size: 3.5rem;
}

.title-sub {
    font-weight: 400;
    font-size: 2.2rem;
    opacity: 0.8;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    opacity: 0.7;
    margin: 0 auto 2rem auto;
    font-family: 'Inter', sans-serif;
    text-align: center;
    max-width: 800px;
    line-height: 1.4;
    color: var(--color-primary-text);
}

/* Hero Header Layout */
.hero-header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 1rem auto;
}

/* Language Switcher */
.language-switcher {
    cursor: pointer;
    transition: opacity 0.3s ease;
    padding: 8px 12px;
    border-radius: 4px;
}

.language-switcher:hover {
    opacity: 0.7;
    background-color: var(--color-secondary-bg);
}

.lang-separator {
    color: var(--color-muted-text);
    font-size: 0.75rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    padding: 0;
    transition: color 0.3s ease;
}

.lang-separator:hover {
    color: var(--color-primary-text);
}

.hero-image {
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-image-img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
    object-position: center;
    border-radius: 0;
    /* filter: grayscale(100%); */
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--color-accent-dark);
    color: var(--color-primary-bg);
    border: 2px solid var(--color-accent-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn-primary:hover {
    background: var(--color-primary-bg);
    color: var(--color-accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}


/* About Section */
.about {
    padding: 100px 0;
    background: var(--color-secondary-bg);
}

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

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-text .btn {
    margin-top: 1rem;
}

.about-text strong {
    color: #917D31;
    font-weight: 600;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: var(--gradient-secondary);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-text);
    font-size: 1.2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.image-placeholder:hover {
    transform: scale(1.05);
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

/* Portfolio Section */
.portfolio {
    padding: 80px 0 60px 0;
    background: var(--color-primary-bg);
}

.portfolio-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.portfolio-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-primary-text);
    margin-bottom: 1rem;
    font-family: 'Sabon', serif;
}

.portfolio-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.portfolio-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.nav-arrow {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--color-primary-text);
    cursor: pointer;
    pointer-events: auto;
    padding: 10px;
    transition: opacity 0.3s ease;
}

.nav-arrow:hover {
    opacity: 0.7;
}

.nav-arrow-left {
    margin-left: 20px;
}

.nav-arrow-right {
    margin-right: 20px;
}

.portfolio-container {
    overflow: hidden;
    margin: 0 40px;
}

.portfolio-scroll {
    display: flex;
    gap: 2rem;
    transition: transform 0.3s ease;
    padding: 0 0 20px 0;
}

.portfolio-card {
    flex: 0 0 400px;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.card-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.card-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--color-primary-text);
    transition: filter 0.3s ease;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--overlay-dark);
    color: var(--color-primary-bg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-card:hover .card-image img,
.portfolio-card:hover .card-image .image-placeholder {
    filter: blur(5px);
}

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

.card-overlay h3 {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

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

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

/* Highlights Section */
.highlights {
    padding: 100px 0;
    background: var(--color-secondary-bg);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    padding: 0 40px;
}

.grid-item {
    aspect-ratio: 1;
    overflow: hidden;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    transition: transform 0.3s ease;
}

/* Zoom in Maxi & Paddi photos to remove black borders */
.grid-item img[alt*="Maxi"],
.portfolio-card img[alt*="Maxi"] {
    transform: scale(1.2);
}

/* Black and white filter for select images */
.bw-image {
    filter: grayscale(100%);
}

.grid-item img:hover {
    transform: scale(1.02);
}

.grid-item img[alt*="Maxi"]:hover,
.portfolio-card img[alt*="Maxi"]:hover {
    transform: scale(1.25);
}

/* Investment Section */
.investment {
    padding: 100px 0;
    background: var(--color-primary-bg);
}

.investment-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.investment-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--color-primary-text);
}

.investment-content strong {
    color: var(--color-accent-dark);
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--color-secondary-bg);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: var(--color-primary-text);
}

.contact-info .btn {
    margin-top: 1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item {
    font-size: 1.1rem;
    color: var(--color-primary-text);
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.social-link {
    color: var(--color-primary-text);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-link:hover {
    opacity: 0.7;
}

/* Social Links Section */
.social {
    padding: 100px 0;
    background: var(--color-secondary-bg);
}

.social-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.social-content p {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    color: var(--color-primary-text);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: var(--color-primary-bg);
    color: var(--color-primary-text);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 12px var(--shadow-default);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow-hover);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border-color: #bc1888;
}

.social-link.youtube:hover {
    background: #ff0000;
    color: white;
    border-color: #ff0000;
}

.social-link i {
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--color-primary-bg);
    color: var(--color-primary-text);
    padding: 60px 0 30px;
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-primary-text);
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.footer-main {
    font-weight: 700;
    font-size: 1.2rem;
}

.footer-sub {
    font-weight: 400;
    font-size: 1rem;
    opacity: 0.8;
}

.footer-logo p {
    color: var(--color-primary-text);
    font-size: 0.9rem;
}

.footer-socials {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-socials .social-link {
    color: var(--color-primary-text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-socials .social-link:hover {
    opacity: 0.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    color: var(--color-muted-text);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.footer-legal a {
    color: var(--color-muted-text);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--color-primary-text);
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-nav {
        padding: 10px 0;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hero {
        margin-top: 50px; /* Adjust for smaller nav on mobile */
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
    }

    .title-main {
        font-size: 2.2rem;
    }

    .title-sub {
        font-size: 1.4rem;
    }

    .hero-image {
        max-width: 100%;
        padding: 0 20px;
    }

    .hero-image-img {
        height: 40vh;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .photo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 20px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .contact-details {
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        gap: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: left;
        gap: 1.5rem;
    }
    
    .footer-logo {
        text-align: left;
    }
    
    .footer-logo p {
        text-align: left;
    }
    
    .business-info {
        text-align: left;
    }

    .footer-socials {
        justify-content: flex-start;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 1rem;
    }

    /* Social Links Mobile */
    .social-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .social-link {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .portfolio-container {
        margin: 0 20px;
    }

    .portfolio-card {
        flex: 0 0 300px;
        height: 400px;
    }

    .portfolio-title {
        font-size: 2.5rem;
    }

    .nav-arrow-left {
        margin-left: 10px;
    }

    .nav-arrow-right {
        margin-right: 10px;
    }

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

    .service-card.featured {
        transform: none;
    }

    .service-card.featured:hover {
        transform: translateY(-5px);
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.2rem;
    }

    .footer-legal {
        flex-direction: column;
        gap: 0.6rem;
        margin-top: 0.8rem;
    }

    .footer-links {
        justify-content: center;
    }
    
    .lang-separator {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .top-nav {
        padding: 8px 0;
    }
    
    .hero {
        margin-top: 45px; /* Adjust for smallest nav on mobile */
    }
    
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
    }

    .title-main {
        font-size: 1.8rem;
    }

    .title-sub {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .photo-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0 10px;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Legal Pages */
.legal-page {
    padding: 80px 0;
    background: var(--color-primary-bg);
    min-height: 100vh;
}

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

.back-link {
    display: inline-block;
    color: var(--color-primary-text);
    text-decoration: none;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

.back-link:hover {
    opacity: 0.7;
}

.legal-header h1 {
    font-family: 'Sabon', serif;
    font-size: 2.5rem;
    color: var(--color-primary-text);
    margin-bottom: 1rem;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: 'Sabon', serif;
    font-size: 1.8rem;
    color: var(--color-primary-text);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-family: 'Sabon', serif;
    font-size: 1.4rem;
    color: var(--color-primary-text);
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-content h4 {
    font-family: 'Sabon', serif;
    font-size: 1.1rem;
    color: var(--color-primary-text);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.legal-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--color-primary-text);
    font-size: 1rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: var(--color-primary-text);
}

.legal-content a {
    color: var(--color-primary-text);
    text-decoration: underline;
}

.legal-content a:hover {
    opacity: 0.7;
}

.legal-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    color: var(--color-muted-text);
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling for anchor links */
html {
    scroll-padding-top: 20px;
}
