:root {
    --primary-color: #1a5f7a;
    --secondary-color: #e8b75d;
    --text-color: #333;
    --light-bg: #f5f5f5;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    color: var(--text-color);
    padding-top: 60px; /* Add padding to account for fixed navbar */
}

/* Main content */
main {
    width: 100%;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    height: 90vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: 1px;
    text-transform: capitalize;
    animation: fadeInDown 1s ease-out;
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 500;
    animation: fadeInUp 1s ease-out;
}

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

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

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: var(--transition);
    text-shadow: none;
    cursor: pointer;
}

.cta-button.primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
    animation: fadeInLeft 1s ease-out;
}

.cta-button.secondary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
    animation: fadeInRight 1s ease-out;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button.primary:hover,
.cta-button.secondary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.cta-button.secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Update responsive design for buttons */
@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
        text-align: center;
    }
}

/* Update responsive design for hero section */
@media (max-width: 768px) {
    body {
        padding-top: 50px; /* Adjust top padding for mobile */
    }
    
    .hero {
        height: 70vh;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-button {
        width: 100%;
    }
    
    .destination-grid {
        grid-template-columns: 1fr;
    }
    
    .features-container {
        grid-template-columns: 1fr;
    }
    
    .houseboat-detail {
        flex-direction: column;
    }
    
    .detail-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-heading {
        font-size: 1.8rem;
    }
    
    .detail-content h3 {
        font-size: 1.5rem;
    }
    
    .booking-section form {
        padding: 1.5rem;
    }
}

#destinations {
    padding-top: 60px; /* Add padding to the top of destinations section */
    margin-top: 0; /* Remove any top margin */
}

.destinations {
    padding: 6rem 5%;
    background: var(--light-bg);
}

.destinations h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.destination-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-5px);
}

.destination-image {
    height: 250px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.destination-card:hover .destination-image img {
    transform: scale(1.1);
}

.destination-info {
    padding: 2rem;
}

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

.destination-info ul {
    list-style: none;
    margin-top: 1rem;
}

.destination-info ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.destination-info ul li i {
    color: var(--secondary-color);
}

/* Boat Types Section */
.boat-types {
    padding: 6rem 5%;
}

.boat-types h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

/* Add these styles in your boat-types section */
.boat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Add these styles */
:root {
    --gold-gradient: linear-gradient(135deg, #e8b75d 0%, #d4af37 100%);
}

.premium-card {
    position: relative;
    border: 2px solid var(--secondary-color);
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.premium-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gold-gradient);
    color: var(--dark-text);
    padding: 8px 40px;
    transform: rotate(45deg);
    font-weight: 600;
    z-index: 1;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.premium-card .price-tag {
    background: var(--gold-gradient);
    font-weight: 700;
}

.boat-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.boat-card:hover {
    transform: translateY(-5px);
}

.boat-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.boat-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.price-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-weight: 600;
}

.boat-info {
    padding: 2rem;
}

.boat-subtitle {
    color: #666;
    margin-bottom: 1rem;
}

.features {
    list-style: none;
    margin: 1rem 0;
}

.features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features li i {
    color: var(--secondary-color);
}

.book-now {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: var(--border-radius);
    margin-top: 1rem;
    transition: var(--transition);
}

.book-now:hover {
    background: var(--secondary-color);
}

/* Amenities Section */
.amenities {
    padding: 6rem 5%;
    background: var(--light-bg);
}

.amenities h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.amenity-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.amenity-card:hover {
    transform: translateY(-5px);
}

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

/* Booking Form */
.booking-form {
    padding: 6rem 5%;
}

.booking-form h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

#bookingForm {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

input, select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
}

.booking-summary {
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: var(--border-radius);
}

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

.submit-button {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-button:hover {
    background: var(--secondary-color);
}

/* Footer */
footer {
    background: var(--primary-color);
    color: white;
    padding: 4rem 5% 2rem;
}

/* Remove or comment out these sections */
.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Changed from 4 to 3 columns */
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Update responsive design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}
.footer-section h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

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

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

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

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
}

.modal-content {
    position: relative;
    background: white;
    width: 90%;
    max-width: 600px;
    margin: 10vh auto;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}

.close-modal {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .destination-grid,
    .boat-grid,
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* @media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: calc(100vh - 60px);
        background: white;
        flex-direction: column;
        padding: 2rem 0;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 1rem;
        margin: 0.5rem 0;
    }

    .search-wrapper {
        max-width: 200px;
    }

    nav ul {
        display: none;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }
} */

@media (max-width: 576px) {
    .destination-grid,
    .boat-grid,
    .amenities-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .search-wrapper {
        max-width: 150px;
    }
}

/* Add these styles */
.premium-card {
    border: 2px solid var(--secondary-color);
    transform: scale(1.02);
}

.boat-image-wrapper {
    position: relative;
    overflow: hidden;
}

.premium-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gold-gradient);
    color: var(--dark-text);
    padding: 8px 40px;
    transform: rotate(45deg);
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.premium-btn {
    background: var(--gold-gradient);
    color: var(--dark-text);
    border: none;
}

.amenities {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.amenities span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 0.9rem;
}

.amenities i {
    color: var(--secondary-color);
}
