/**
 * WEBSITE: https://themefisher.com
 * TWITTER: https://twitter.com/themefisher
 * FACEBOOK: https://www.facebook.com/themefisher
 * GITHUB: https://github.com/themefisher/
 */

@charset "UTF-8";
/*!
 * Bootstrap v5.0.2 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */

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

body {
    font-family: 'Georgia', serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    color: #e8e8e8;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(200, 170, 110, 0.1) 0%, transparent 70%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="0.5" fill="%23c8aa6e" opacity="0.1"/><circle cx="30" cy="25" r="0.3" fill="%23c8aa6e" opacity="0.05"/><circle cx="60" cy="15" r="0.4" fill="%23c8aa6e" opacity="0.08"/><circle cx="80" cy="35" r="0.2" fill="%23c8aa6e" opacity="0.06"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
    animation: grain 20s infinite linear;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -10%); }
    20% { transform: translate(-15%, 5%); }
    30% { transform: translate(7%, -25%); }
    40% { transform: translate(-5%, 25%); }
    50% { transform: translate(-15%, 10%); }
    60% { transform: translate(15%, 0%); }
    70% { transform: translate(0%, 15%); }
    80% { transform: translate(3%, 35%); }
    90% { transform: translate(-10%, 10%); }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 0 2rem;
    z-index: 2;
    position: relative;
}

.hero h11{
    font-size: 4.5rem;
    font-weight: 900; /* Maximum standard weight (equivalent to "black" weight) */
    margin-bottom: 1rem;
    background: linear-gradient(175deg, #c8aa6e 0%, #d4af37 50%, #3d2c01 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 8px #fffffe;
    animation: fadeInUp 1s ease-out;
}
.hero h1 {
    font-size: 3.0rem;
    font-weight: 900;
    color: #c8aa6e;
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.5),  /* Soft white glow */
        0 0 10px rgba(0, 0, 0, 0.3),      /* Wider blur for halo effect */
        0 0 20px rgba(255, 255, 255, 0.2);      /* Extra spread for brightness */
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #d0d0d0;
    font-style: italic;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background: linear-gradient(135deg, rgba(200, 170, 110, 0.2), rgba(212, 175, 55, 0.3));
    border: 2px solid #c8aa6e;
    color: #c8aa6e;
    text-decoration: none;
    font-size: 1.0rem !important;
    border-radius: 50px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s ease-out 0.6s both;
    box-shadow: 0 8px 32px rgba(200, 170, 110, 0.2);
}

.cta-button:hover {
    background: linear-gradient(135deg, rgba(200, 170, 110, 0.4), rgba(212, 175, 55, 0.5));
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(200, 170, 110, 0.4);
}

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

/* Gallery Section */
.gallery {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #c8aa6e;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    transition: all 2s ease;
    border: 1px solid rgba(200, 170, 110, 0.2);
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(73, 73, 73, 0.2);
    border-color: rgba(200, 170, 110, 0.5);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(200, 170, 110, 0.3), transparent 10%, rgba(200, 170, 110, 0.2));
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::before {
    opacity: 0.8; /* Much stronger on hover */
    background: linear-gradient(45deg,rgba(200, 170, 110, 0.5),
               transparent 30%,rgba(200, 170, 110, 0.4));
}

.gallery-item-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    transform: translateY(60%);
    transition: transform 0.4s ease;
}

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

.gallery-item h3 {
    font-size: 1.5rem;
    color: #c8aa6e;
    margin-bottom: 0.5rem;
}

.gallery-item p {
    color: #d0d0d0;
    font-style: italic;
}

/* About Section */
.about {
    padding: 5rem 5%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.8), rgba(15, 15, 15, 0.9));
    border-top: 1px solid rgba(200, 170, 110, 0.3);
    border-bottom: 1px solid rgba(200, 170, 110, 0.3);
}

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

.about h2 {
    font-size: 3rem;
    color: #c8aa6e;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.about p {
    font-size: 1.3rem;
    color: #d0d0d0;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 5rem 5%;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background-color: black;
}

.contact h2 {
    font-size: 3rem;
    color: #c8aa6e;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-item {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-item:hover {
    transform: translateY(-5px);
    border-color: rgba(200, 170, 110, 0.6);
    box-shadow: 0 10px 30px rgba(200, 170, 110, 0.2);
}

.contact-item h3 {
    color: #c8aa6e;
    margin-bottom: 0.5rem;
}

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.95);
    padding: 2rem 5%;
    text-align: center;
    border-top: 1px solid rgba(200, 170, 110, 0.3);
}

.footer p {
    color: #888;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

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

    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }

    .section-title, .about h2, .contact h2 {
        font-size: 2.5rem;
    }
}

/* Scroll animations */
.scroll-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-fade.visible {
    opacity: 1;
    transform: translateY(0);
}