/* styles.css */
:root {
    --deep-bay-blue: #1a4b6d;
    --deep-bay-light-blue: #4a8bad;
    --sand: #f8f1d8;
    --sand-dark: #e8dfc3;
    --white: #ffffff;
    --deep-bay-dark: #0f2c44;
    --accent: #d4af37;
    --text-dark: #333333;
    --text-light: #f5f5f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: var(--deep-bay-blue);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    /*background-color: var(--sand);*/
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    overflow: hidden;
}

.logo img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.logo-text {
    color: var(--sand);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.logo-text span {
    font-size: 1rem;
    font-weight: 400;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    color: var(--sand);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

nav ul li a:hover {
    color: var(--accent);
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--deep-bay-blue) 0%, var(--deep-bay-light-blue) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.hero-content {
    text-align: center;
    color: var(--sand);
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInDown 1s ease;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
}

.platform-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    animation: fadeIn 1.5s ease;
}

.platform-btn {
    display: inline-flex;
    align-items: center;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.platform-btn i {
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.airbnb-btn {
    background-color: #FF5A5F;
    color: white;
}

.airbnb-btn:hover {
    background-color: #e14a4f;
    transform: translateY(-3px);
}

.booking-btn {
    background-color: #003580;
    color: white;
}

.booking-btn:hover {
    background-color: #002654;
    transform: translateY(-3px);
}

/* Floating Circles */
.floating-circles {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    width: 50%;
    height: 80%;
    overflow: visible;
    z-index: 1;
}

.circle {
    position: absolute;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 5px solid var(--white);
    transition: all 0.5s ease;
    background-size: cover;
    background-position: center;
}

.circle:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.circle-1 {
    width: 280px;
    height: 280px;
    top: 10%;
    right: 10%;
    background-image: url("Photos/patio.webp");
    animation: float 8s ease-in-out infinite;
}

.circle-2 {
    width: 220px;
    height: 220px;
    bottom: 20%;
    right: 30%;
    background-image: url("Photos/IMG_2208.jpg");
    animation: float 10s ease-in-out infinite 1s;
}

.circle-3 {
    width: 180px;
    height: 180px;
    top: 40%;
    right: 5%;
    background-image: url("Photos/Cocktail.jpg");
    animation: float 12s ease-in-out infinite 0.5s;
}

.circle-4 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    right: 15%;
    background-image: url("Photos/bedroom2.webp");
    animation: float 9s ease-in-out infinite 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}


/* Wave Background */
.wave-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" fill="%23f8f1d866"><path d="M985.66,92.83C906.67,72,823.78,31,743.84,14.19c-82.26-17.34-168.06-16.33-250.45.39-57.84,11.73-114,31.07-172,41.86A600.21,600.21,0,0,1,0,27.35V120H1200V95.8C1132.19,118.92,1055.71,111.31,985.66,92.83Z"></path></svg>');
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 1;
}

.wave-bg:nth-child(1) {
    bottom: 0;
    animation: wave 20s linear infinite;
}

.wave-bg:nth-child(2) {
    bottom: 10px;
    opacity: 0.5;
    animation: wave 15s linear infinite reverse;
}

.wave-bg:nth-child(3) {
    bottom: 20px;
    opacity: 0.3;
    animation: wave 10s linear infinite;
}

/* Wave Divider */
.wave-divider {
    position: relative;
    height: 100px;
    overflow: hidden;
}

.wave-divider svg {
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
}

.shape-fill {
    fill: var(--sand);
}

.wave-divider-bottom {
    transform: rotate(180deg);
}

/* About Section */
#about {
    padding: 5rem 0;
    position: relative;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background-color: var(--sand);
}

.features-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.folder-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.folder {
    perspective: 1000px;
    height: 500px;
}

.folder-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
}

.folder:hover .folder-inner {
    transform: rotateY(180deg);
}

.folder-front, .folder-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.folder-front {
    background: linear-gradient(135deg, var(--deep-bay-blue) 0%, var(--deep-bay-light-blue) 100%);
    color: var(--sand);
}

.folder-front i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.folder-back {
    background-color: var(--white);
    color: var(--text-dark);
    transform: rotateY(180deg);
    overflow-y: auto;
}

.folder-back h3 {
    color: var(--deep-bay-blue);
    margin-bottom: 1rem;
}

.folder-back img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
    margin: 1rem 0;
}

.content-section {
    min-height: 450px;
    margin: 2rem;
}

.feature-highlight {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    background: rgb(87, 118, 165);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    justify-content: center;
}
        
.highlight-content {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
        
.highlight-content h3 {
    font-size: 2rem;
    color: #eef0f3;
    margin-bottom: 20px;
}
        
.highlight-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #f1f3f5;
    margin-bottom: 25px;
}
        
.highlight-video {
    flex: 1.4; /* Increased relative size */
    min-width: 400px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    padding: 3rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
        
.highlight-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
            display: block;
            border-radius: 12px;
            transition: transform 0.3s ease;
        }
        
        .highlight-video video:hover {
            transform: scale(1.02);
        }
        
 @media (max-width: 768px) {
            .feature-highlight {
                flex-direction: column;
            }
            
            .highlight-content, .highlight-video {
                min-width: 100%;
            }
            
            .highlight-content {
                padding: 30px;
            }
            
            .highlight-video {
                padding: 0 30px 30px;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 480px) {
            .content-section {
                margin: 1rem auto;
            }
            
            .highlight-content {
                padding: 20px;
            }
            
            .highlight-content h3 {
                font-size: 1.7rem;
            }
            
            .highlight-content p {
                font-size: 1rem;
            }
            
            .highlight-video {
                padding: 0 20px 20px;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .section-title p {
                font-size: 1rem;
            }
        }        

/* Gallery Section */
.gallery-section {
    padding: 5rem 0;
    position: relative;
    background: linear-gradient(135deg, var(--deep-bay-blue) 0%, var(--deep-bay-light-blue) 100%);
    color: var(--sand);
}

.gallery-container {
    margin-top: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-nav {
    text-align: center;
}

.nav-btn {
    background-color: var(--sand);
    color: var(--deep-bay-blue);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background-color: var(--accent);
    color: var(--white);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.modal-content {
    display: block;
    margin: auto;
    max-width: 90%;
    max-height: 80%;
    margin-top: 5%;
    border-radius: 5px;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 35px;
    color: var(--sand);
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--accent);
}

.modal-caption {
    text-align: center;
    color: var(--sand);
    padding: 10px;
    font-size: 1.1rem;
}

/* Reviews Section */
#reviews {
    padding: 5rem 0;
    background-color: var(--sand);
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.review-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.review-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
}

.review-name {
    font-weight: 600;
    color: var(--deep-bay-blue);
}

.review-rating {
    color: var(--accent);
    margin-top: 0.3rem;
}

.review-card p {
    font-style: italic;
    line-height: 1.6;
}

/* Booking Platforms Section */
.booking-platforms {
    padding: 5rem 0;
    text-align: center;
    background: linear-gradient(135deg, var(--deep-bay-blue) 0%, var(--deep-bay-light-blue) 100%);
    color: var(--sand);
}

.booking-platforms p {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

/* Car Rental Section*/
.rental-section {
            max-width: 1200px;
            margin: 40px auto;
            padding: 20px;
            background: #2c94da;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }
        
        .rental-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 20px 0;
            border-bottom: 2px solid #f0f0f0;
        }
        
        .rental-header h1 {
            font-size: 2.5rem;
            color: #e4e9ee;
            margin-bottom: 15px;
        }
        
        .rental-header p {
            font-size: 1.2rem;
            color: #eaf1f1;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .features-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .feature-box {
            flex: 1;
            min-width: 300px;
            padding: 25px;
            background: linear-gradient(135deg, #0842b4 0%, #03295e 100%);
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .feature-box:hover {
            transform: translateY(-5px);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: #e3ebf0;
            margin-bottom: 20px;
        }
        
        .feature-box h3 {
            font-size: 1.5rem;
            color: #d8e1eb;
            margin-bottom: 15px;
        }
        
        .feature-box p {
            color: #dae5e6;
        }
        
        .locations-container {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .location {
            flex: 1;
            min-width: 300px;
            padding: 25px;
            background: #ffffff;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            text-align: center;
        }
        
        .location-icon {
            font-size: 2.5rem;
            color: #e74c3c;
            margin-bottom: 20px;
        }
        
        .location h3 {
            font-size: 1.5rem;
            color: #283d52;
            margin-bottom: 15px;
        }
        
        .location p {
            color: #100eb8;
            margin-bottom: 10px;
        }
        
        .cta-container {
            text-align: center;
            padding: 30px;
            background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
            border-radius: 10px;
            color: #fff;
        }
        
        .cta-container h2 {
            font-size: 2rem;
            margin-bottom: 20px;
        }
        
        .cta-container p {
            font-size: 1.2rem;
            margin-bottom: 25px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-button {
            display: inline-block;
            padding: 15px 35px;
            background: #e74c3c;
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .cta-button:hover {
            background: #c0392b;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        @media (max-width: 768px) {
            .features-container, .locations-container {
                flex-direction: column;
            }
            
            .rental-header h1 {
                font-size: 2rem;
            }
            
            .rental-header p {
                font-size: 1rem;
            }
        }

/* Map Section */
#location {
    padding: 5rem 0;
    background-color: var(--sand);
}

.map-container {
    margin-top: 2rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
}

/* Footer */
footer {
    background-color: var(--deep-bay-dark);
    color: var(--sand);
    padding: 3rem 0 1rem;
}

.footer-content {
    text-align: center;

}

.logo-container {
    align-items: center;
    justify-content: center;
}

.social-links {
    margin: 2rem 0;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--sand);
    color: var(--deep-bay-dark);
    margin: 0 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes wave {
    0% {
        background-position-x: 0;
    }
    100% {
        background-position-x: 1000px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .platform-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .circle {
        display: none;
    }
}

@media (max-width: 768px) {
    header {
        padding: 0.5rem 0;
    }
    
    .header-container {
        flex-direction: column;
    }
    
    nav ul {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0.5rem;
    }
    
    .hero {
        margin-top: 120px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .about-content, .feature-highlight {
        flex-direction: column;
    }
    
    .folder-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-text span {
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}