@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Bungee+Spice&family=Krona+One&family=League+Gothic&family=Orbitron:wght@400..900&family=Signika:wght@300..700&display=swap');

:root {
    --primary-color: #5D0C13; /* Deep burgundy */
    --secondary-color: #E4B252; /* Gold */
    --dark-color: #2C070A; /* Darker burgundy for text */
    --light-color: #FFF9F0; /* Off-white */
    --accent-color: #B51F30; /* Brighter red for accents */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgb(93 12 19 / 83%), rgb(93 12 19 / 57%)), url('images/hero-background.png') no-repeat center center/cover;
    height: 100vh;
    color: var(--light-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    font-family: "Bungee Spice", sans-serif;
    text-shadow: 3px 4px black;
}


.hero-content .subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.opening-banner {
    background-color: rgba(93, 12, 19, 0.9);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid var(--secondary-color);
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.opening-banner h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.opening-banner .date {
    font-size: 1.2rem;
    font-weight: 600;
}

.cta-button {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 15px 40px;
    font-weight: 600;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-decoration: none;
}

.cta-button:hover {
    background-color: rgba(93, 12, 19, 0.9);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    border: 2px solid white;
}

/* General Section Styling */
section {
    padding: 80px 20px;
    text-align: center;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-family: "Bungee Spice", sans-serif;
    text-shadow: 3px 2px black;
}

/* Amenities Section */
.amenities {
    background-color: var(--secondary-color);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.amenity-item {
    padding: 20px;
}

.amenity-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.amenity-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Invitation Section */
.invitation {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
    text-align: left;
}
.invitation-content {
    flex: 1;
    min-width: 300px;
}
.invitation-image {
    flex: 1;
    min-width: 300px;
}
.invitation-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.chief-guests {
    margin: 20px 0;
    padding-left: 20px;
    border-left: 3px solid var(--primary-color);
}
.chief-guests p {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Location Section */
.location {
     background-color: var(--secondary-color);
}
.location p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}
.map-container {
    max-width: 1000px;
    margin: auto;
    border: 5px solid white;
    border-radius: 10px;
    overflow: hidden;
}

/* Contact Section */
.contact-section {
    background-color: var(--light-color);
    padding: 80px 20px;
}

.contact-container {
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
}

.contact-info {
    width: 100%;
    padding: 0;
}

.contact-info h3 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
}

.phone-numbers {
    margin: 30px 0;
}

.phone-numbers p {
    font-size: 1.3rem;
    margin: 15px 0;
    color: var(--dark-color);
}

.phone-numbers i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.2em;
}

.owner {
    font-size: 1.2rem;
    margin: 25px 0 15px;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-info > p:last-child {
    color: #666;
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-container {
        padding: 30px 20px;
    }
    
    .contact-info h3 {
        font-size: 1.8rem;
    }
    
    .phone-numbers p {
        font-size: 1.1rem;
    }
}

/* Responsive Design */
@media(max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content .subtitle {
        font-size: 1.2rem;
    }
    .opening-banner h2 {
        font-size: 1.5rem;
    }
    section h2 {
        font-size: 2rem;
    }
    .invitation {
        text-align: center;
    }
    .invitation-content {
        text-align: left;
    }
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    text-align: center;
    padding: 20px;
}

/* Add smooth scrolling to the entire page */
html {
    scroll-behavior: smooth;
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { transform: scale(0.95); }
    to { transform: scale(1); }
}

/* Hero section animations */
.hero-content {
    animation: fadeIn 1s ease-out;
}

.hero-content img {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-content h1 {
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-content .subtitle {
    animation: fadeInUp 1s ease-out 0.5s both;
}

.opening-banner {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button {
    animation: fadeInUp 1s ease-out 0.7s both;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Section animations */
section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Amenities grid animations */
.amenity-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.amenities.visible .amenity-item {
    animation: fadeInUp 0.6s ease-out forwards;
}

.amenities.visible .amenity-item:nth-child(1) { animation-delay: 0.2s; }
.amenities.visible .amenity-item:nth-child(2) { animation-delay: 0.3s; }
.amenity-item:nth-child(3) { animation-delay: 0.4s; }
.amenity-item:nth-child(4) { animation-delay: 0.5s; }

.amenity-item:hover {
    
    
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        box-shadow: 
          0 8px 32px rgba(0, 0, 0, 0.1),
          inset 0 1px 0 rgba(255, 255, 255, 0.5),
          inset 0 -1px 0 rgba(255, 255, 255, 0.1),
          inset 0 0 20px 10px rgba(255, 255, 255, 1);
        position: relative;
        overflow: hidden;
   
      
  
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Invitation section animation */
.invitation {
    transition: all 0.8s ease-out;
}

/* Map container animation */
.map-container {
    transition: all 0.5s ease-out;
    transform: scale(0.98);
}

.map-container:hover {
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Contact section animation */
.contact-container {
    transition: all 0.5s ease-out;
    transform: translateY(10px);
}

.contact-container:hover {
    transform: translateY(0);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Add animation to phone numbers */
.phone-numbers p {
    display: inline-block;
    transition: all 0.3s ease;
}

.phone-numbers p:hover {
    transform: translateX(5px);
    color: var(--secondary-color);
}

/* Add animation to icons */
.amenity-item i {
    transition: all 0.3s ease;
}

.amenity-item:hover i {
    transform: scale(1.2);
    color: white
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content img {
        width: 150px;
    }
    
    .amenity-item {
        margin-bottom: 20px;
    }
}
