/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8b0000;
    --secondary-color: #a52a2a;
    --accent-gold: #c9a961;
    --light-bg: #f5f1e8;
    --cream-bg: #faf8f3;
    --dark-text: #2c2c2c;
    --medium-text: #4a4a4a;
    --light-text: #6a6a6a;
    --border-color: #d4c5a9;
    --hover-bg: #ebe7dc;
}

body {
    font-family: 'Cormorant Garamond', serif;
    background-color: var(--cream-bg);
    color: var(--dark-text);
    line-height: 1.8;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
    letter-spacing: 2px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(250, 248, 243, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: var(--dark-text);
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    text-transform: uppercase;
    font-family: 'Cinzel', serif;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--cream-bg) 50%, var(--light-bg) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.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 1000 1000"><defs><radialGradient id="g"><stop offset="0%25" stop-color="%23d4af37" stop-opacity="0.1"/><stop offset="100%25" stop-opacity="0"/></radialGradient></defs><circle cx="500" cy="500" r="400" fill="url(%23g)"/></svg>');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 248, 243, 0.75);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 72px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 8px;
}

.hero-subtitle {
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--medium-text);
    letter-spacing: 6px;
}

.hero-quote {
    margin: 40px 0;
    padding: 30px;
    border-left: 3px solid var(--primary-color);
    border-right: 3px solid var(--primary-color);
}

.hero-quote p {
    font-size: 22px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.hero-quote span {
    font-size: 16px;
    color: var(--primary-color);
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 16px;
    letter-spacing: 2px;
    border: 2px solid var(--primary-color);
    transition: all 0.4s ease;
    text-transform: uppercase;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
    background: var(--secondary-color);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 2;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.scroll-indicator span {
    display: block;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-left: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: rotate(-45deg);
    margin: 0 auto;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
    letter-spacing: 4px;
}

.divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    margin: 20px auto;
}

.section-subtitle {
    font-size: 20px;
    color: var(--light-text);
    font-style: italic;
}

/* About Section */
.about-section {
    background: var(--cream-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    font-size: 18px;
}

.about-text .intro-text {
    font-size: 22px;
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 25px;
    color: var(--medium-text);
}

.about-text .cta-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--dark-text);
    margin-top: 30px;
}

.about-image {
    position: relative;
}

.image-placeholder {
    width: 100%;
    min-height: 400px;
    max-height: 600px;
    background: linear-gradient(135deg, var(--light-bg), var(--hover-bg));
    border: 3px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--light-text);
    position: relative;
    overflow: hidden;
}

.image-placeholder img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Services Section */
.services-section {
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--cream-bg);
    padding: 40px 30px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(139, 0, 0, 0.15);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--medium-text);
    line-height: 1.8;
}

/* Mission Section */
.mission-section {
    background: var(--hover-bg);
    position: relative;
    overflow: hidden;
}

.mission-section::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 1000 1000"><circle cx="200" cy="200" r="300" fill="%238b0000" opacity="0.05"/><circle cx="800" cy="800" r="400" fill="%23d4af37" opacity="0.05"/></svg>');
    pointer-events: none;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.mission-content h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.mission-content h3 {
    font-size: 28px;
    margin-bottom: 40px;
    color: var(--medium-text);
    font-weight: 400;
}

.mission-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--medium-text);
    line-height: 2;
}

.mission-cta {
    margin-top: 50px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Gallery Section */
.gallery-section {
    background: var(--cream-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
    grid-auto-flow: dense;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
    width: 100%;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.gallery-placeholder {
    width: 100%;
    min-height: 300px;
    background: linear-gradient(135deg, var(--light-bg), var(--hover-bg));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--light-text);
    border: 2px solid var(--border-color);
    transition: all 0.4s ease;
    border-radius: 8px;
}

.gallery-item:hover .gallery-placeholder {
    border-color: var(--primary-color);
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Contact Section */
.contact-section {
    background: var(--light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    background: var(--cream-bg);
    border: 1px solid var(--border-color);
    color: var(--dark-text);
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(139, 0, 0, 0.1);
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item strong {
    display: block;
    font-family: 'Cinzel', serif;
    color: var(--primary-color);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.contact-item p {
    color: var(--medium-text);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
}

.social-link {
    color: var(--dark-text);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.social-link:hover {
    color: var(--primary-color);
}

.newsletter {
    margin-top: 40px;
    padding: 30px;
    background: var(--cream-bg);
    border: 1px solid var(--border-color);
}

.newsletter h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.newsletter p {
    color: var(--medium-text);
    margin-bottom: 20px;
    font-size: 14px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form input {
    padding: 12px 15px;
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    color: var(--dark-text);
    font-family: 'Cormorant Garamond', serif;
}

/* Social Media Strip */
.social-strip {
    background: var(--primary-color);
    padding: 50px 0;
    overflow: hidden;
    position: relative;
}

.social-strip-content {
    display: flex;
    gap: 80px;
    align-items: center;
    animation: slideIcons 30s linear infinite;
    width: fit-content;
}

@keyframes slideIcons {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.social-icon-item {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon-item:hover {
    transform: translateY(-10px);
}

.social-icon-circle {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-icon-item:hover .social-icon-circle {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transform: scale(1.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.social-icon-circle svg {
    width: 32px;
    height: 32px;
    transition: all 0.3s ease;
}

/* Custom image icons for social media */
.social-icon-circle img.social-custom-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.social-icon-item:hover svg {
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6));
}

.social-icon-item:hover img.social-custom-icon {
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.6)) brightness(1.2);
}

.social-label {
    font-family: 'Cinzel', serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.social-icon-item:hover .social-label {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Footer */
.footer {
    background: var(--hover-bg);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 18px;
    color: var(--medium-text);
    margin-bottom: 30px;
    letter-spacing: 2px;
}

.footer-copyright {
    font-size: 14px;
    color: var(--light-text);
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(250, 248, 243, 0.98);
        width: 100%;
        padding: 40px 20px;
        gap: 20px;
        transition: left 0.4s ease;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-quote p {
        font-size: 18px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .mission-cta {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
        letter-spacing: 4px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .logo {
        font-size: 18px;
    }

    .cta-button {
        padding: 12px 30px;
        font-size: 14px;
    }
}
