/* ==================== */
/* CSS Variables */
/* ==================== */
:root {
    --primary-color: #1a4d7a;
    --secondary-color: #d4af37;
    --accent-color: #8b4513;
    --text-dark: #2c3e50;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #1a4d7a;
    --border-color: #d4af37;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    background-color: #fff;
    padding-top: 80px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'PT Serif', serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1.2rem;
}

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

a:hover {
    color: var(--secondary-color);
}

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

ul {
    list-style: none;
}

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

/* ==================== */
/* Navigation */
/* ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 77, 122, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo .logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--text-light);
    margin: 0;
}

.logo .tagline {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin: 0;
    font-style: italic;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-light);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: var(--transition);
}

.nav-menu a:hover {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ==================== */
/* Hero Section */
/* ==================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a4d7a 0%, #2c5282 50%, #3a6a9e 100%);
    overflow: hidden;
}

.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 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,197.3C1248,203,1344,149,1392,122.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    color: var(--text-light);
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-light);
    font-size: 2rem;
    animation: bounce 2s infinite;
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ==================== */
/* Buttons */
/* ==================== */
.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: #b8941f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-primary.large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

/* ==================== */
/* Sections */
/* ==================== */
.section {
    padding: 5rem 0;
}

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

.section-header.light h2,
.section-header.light .subtitle {
    color: var(--text-light);
}

.ornament {
    color: var(--secondary-color);
    font-size: 2rem;
    margin: 1rem 0;
}

.ornament-large {
    color: var(--secondary-color);
    font-size: 3rem;
    text-align: center;
    margin: 2rem 0;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-style: italic;
    margin-top: 0.5rem;
}

.bg-light {
    background-color: var(--bg-light);
}

.bg-dark {
    background: linear-gradient(135deg, #1a4d7a 0%, #2c5282 100%);
    color: var(--text-light);
}

/* ==================== */
/* Welcome Section */
/* ==================== */
.welcome-section .content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.text-content {
    font-size: 1.1rem;
}

.image-grid {
    display: grid;
    gap: 1rem;
}

.grid-item {
    border-radius: 8px;
    overflow: hidden;
}

.placeholder-image {
    background: linear-gradient(135deg, #1a4d7a 0%, #2c5282 100%);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    font-size: 4rem;
}

/* ==================== */
/* Philosophy Section */
/* ==================== */
.intro-text {
    font-size: 1.15rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.9;
}

.feature-box {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--secondary-color);
}

.feature-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 3.5rem;
    color: var(--secondary-color);
}

.highlight-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin-top: 2rem;
}

/* ==================== */
/* Menu Section */
/* ==================== */
.menu-category {
    margin-bottom: 4rem;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--secondary-color);
}

.category-header i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.category-header h3 {
    margin: 0;
}

.category-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.menu-items {
    display: grid;
    gap: 2rem;
}

.menu-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.menu-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a4d7a 0%, #2c5282 100%);
    border-radius: 50%;
    color: var(--secondary-color);
    font-size: 1.8rem;
}

.menu-text .menu-title {
    display: block;
    font-family: 'PT Serif', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.menu-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.card-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 3rem;
    color: var(--secondary-color);
}

.menu-card .card-title {
    display: block;
    font-family: 'PT Serif', serif;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.menu-card ul {
    list-style: none;
}

.menu-card li {
    padding: 0.7rem 0;
    border-bottom: 1px solid #eee;
    font-size: 1.05rem;
}

.menu-card li:last-child {
    border-bottom: none;
}

/* ==================== */
/* Atmosphere Section */
/* ==================== */
.atmosphere-content {
    display: grid;
    gap: 3rem;
}

.atmosphere-text {
    font-size: 1.1rem;
    line-height: 1.9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature-item .feature-title {
    display: block;
    font-family: 'PT Serif', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--text-light);
    margin: 0;
}

/* ==================== */
/* Hospitality Section */
/* ==================== */
.hospitality-content {
    max-width: 900px;
    margin: 0 auto;
}

.compliments-box {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem;
    border-radius: 12px;
    margin-top: 3rem;
    box-shadow: var(--shadow);
}

.compliments-box h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.compliments-box > p {
    text-align: center;
    margin-bottom: 2rem;
}

.compliments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.compliment-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.compliment-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.compliment-item .compliment-title {
    display: block;
    font-family: 'PT Serif', serif;
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.compliment-item p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
}

/* ==================== */
/* Values Section */
/* ==================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a4d7a 0%, #2c5282 100%);
    border-radius: 50%;
    color: var(--secondary-color);
    font-size: 2rem;
}

.value-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.value-card p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* ==================== */
/* Occasions Section */
/* ==================== */
.occasions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.occasion-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--secondary-color);
}

.occasion-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.occasion-card i {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.occasion-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.occasion-card p {
    color: #666;
    margin: 0;
}

/* ==================== */
/* Contact Section */
/* ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

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

.info-item {
    display: flex;
    align-items: start;
    gap: 1.5rem;
}

.info-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-top: 0.3rem;
}

.info-item h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.info-item a {
    color: var(--text-light);
    text-decoration: underline;
}

.info-item a:hover {
    color: var(--secondary-color);
}

.map-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.map-placeholder i {
    font-size: 5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: var(--text-light);
    text-align: center;
    margin: 0;
    font-size: 1.1rem;
}

.location-note {
    margin-top: 3rem;
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-light);
}

/* ==================== */
/* Invitation Section */
/* ==================== */
.invitation-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.invitation-text {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.welcome-text {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 2rem 0;
}

/* ==================== */
/* Footer */
/* ==================== */
.footer {
    background: var(--text-dark);
    color: var(--text-light);
    padding: 3rem 0 1.5rem;
}

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

.logo-footer-img {
    height: 60px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.footer-logo h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: var(--text-light);
    font-style: italic;
}

.footer-info a,
.footer-hours p {
    color: var(--text-light);
}

.footer-info a:hover {
    color: var(--secondary-color);
}

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

.footer-bottom p {
    margin: 0;
    color: #bbb;
    font-size: 0.9rem;
}

/* ==================== */
/* Responsive Design */
/* ==================== */
@media (max-width: 968px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.6rem; }
    
    .logo .logo-img {
        height: 40px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .welcome-section .content-wrapper,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: rgba(26, 77, 122, 0.98);
        width: 100%;
        padding: 2rem;
        gap: 1rem;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .menu-grid,
    .values-grid,
    .occasions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .feature-box,
    .compliments-box {
        padding: 2rem 1.5rem;
    }
    
    .btn-primary {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
    
    .compliments-grid {
        grid-template-columns: 1fr;
    }
}
