/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d4a373;
    --secondary-color: #8b7355;
    --accent-color: #f4e8d8;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: normal;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    padding: 100px 20px;
    text-align: center;
    color: var(--text-dark);
    position: relative;
}

.hero-with-image {
    background-image: linear-gradient(rgba(244, 232, 216, 0.85), rgba(212, 163, 115, 0.85)), url('photo1.jpg');
    background-size: cover;
    background-position: 25% 15%;
    background-attachment: fixed;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.couple-names {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: normal;
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--secondary-color);
}

.wedding-date .date {
    font-size: 1.8rem;
    font-weight: bold;
    background: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 4px 15px var(--shadow);
}

/* Info Cards */
.info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 60px 0;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow);
    text-align: center;
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.detail-text {
    color: var(--text-light);
    line-height: 1.8;
}

/* Schedule Timeline */
.schedule-section {
    margin: 60px 0;
    padding: 40px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow);
}

.section-title {
    text-align: center;
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--accent-color);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-time {
    font-weight: bold;
    color: var(--primary-color);
    font-size: 1.2rem;
    min-width: 100px;
}

.timeline-content h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-light);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    font-family: 'Georgia', serif;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.2rem;
    width: 100%;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border-radius: 10px;
    margin: 60px 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

/* Hotels Page */
.page-header {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    padding: 60px 20px;
    text-align: center;
    color: var(--text-dark);
}

.page-header-with-image {
    background-image: linear-gradient(rgba(244, 232, 216, 0.9), rgba(212, 163, 115, 0.9)), url('photo3.jpg');
    background-size: cover;
    background-position: center;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.hotels-section {
    margin: 40px 0;
}

.hotel-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow);
    margin-bottom: 2rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hotel-image {
    background: var(--accent-color);
    padding: 0;
    text-align: center;
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hotel-image img {
    width: 50%;
    height: 100%;
    object-fit: cover;
}

.hotel-placeholder {
    font-size: 5rem;
}

.hotel-info {
    padding: 2rem;
}

.hotel-info h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.hotel-rating {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.hotel-address,
.hotel-distance,
.hotel-details {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.hotel-amenities {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}

.amenity {
    background: var(--accent-color);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.hotel-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.hotel-actions .btn {
    flex: 1;
    text-align: center;
}

/* RSVP Form */
.rsvp-section {
    margin: 40px 0;
}

.rsvp-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: bold;
}

.form-help {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.25rem;
    font-weight: normal;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: 'Georgia', serif;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.radio-group,
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 5px;
    transition: all 0.3s;
    font-weight: normal;
}

.radio-label:hover,
.checkbox-label:hover {
    border-color: var(--primary-color);
    background-color: var(--accent-color);
}

.radio-label input[type="radio"],
.checkbox-label input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 3rem;
}

.success-icon {
    font-size: 5rem;
    color: #4CAF50;
    margin-bottom: 1rem;
}

.success-message h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.success-message p {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Info Box */
.info-box {
    background: var(--accent-color);
    padding: 2rem;
    border-radius: 10px;
    margin: 40px 0;
    border-left: 5px solid var(--primary-color);
}

.info-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-box ul {
    margin-left: 1.5rem;
    color: var(--text-light);
}

.info-box ul li {
    margin-bottom: 0.5rem;
}

.info-box a {
    color: var(--primary-color);
    text-decoration: none;
}

.info-box a:hover {
    text-decoration: underline;
}

/* Photo Gallery */
.photo-gallery {
    margin: 60px 0;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px var(--shadow);
    transition: transform 0.3s;
    background: var(--white);
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: var(--white);
    text-align: center;
    padding: 2rem;
    margin-top: 60px;
    position: relative;
}

.admin-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    z-index: 999;
}

.admin-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .couple-names {
        font-size: 2.5rem;
    }

    .info-section {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hotel-actions {
        flex-direction: column;
    }

    .rsvp-form-container {
        padding: 1.5rem;
    }

    .checkbox-group,
    .radio-group {
        gap: 0.5rem;
    }

    
}

@media (max-width: 1000px) {

    .container h1 {
        text-align: center;
        font-size: 2rem;
    }

    .hero-with-image {
        background-position: 52% 8rem;
    }

    .hotel-card {
        flex-direction: column;
        margin-left: auto;
        margin-right: auto;
    }

    .hotel-image {
        min-width: 300px;
        max-width: 300px;
        height: auto;
        margin-left: auto;
        margin-right: auto;
    }

    .hotel-image img {
        width: 100%;
        height: 20%;
    }

    .checkbox-group {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .checkbox-label {
        flex: 1;
        min-width: 200px;
    }
}
