/* Vyna Living - Luxury Website Styles */

:root {
    --primary-beige: #F5F1E8;
    --secondary-beige: #E8DCC4;
    --accent-brown: #A9907E;
    --dark-text: #3E3023;
    --white: #FFFFFF;
    --gold-accent: #C9A87C;
    --light-grey: #F9F7F4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    color: var(--dark-text);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    letter-spacing: 1px;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

p {
    font-family: 'Lato', 'Arial', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #5A4A42;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 5%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

nav .container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: var(--dark-text);
    text-decoration: none;
    text-transform: uppercase;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 3rem;
}

nav ul li a {
    color: var(--dark-text);
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: var(--gold-accent);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-beige) 0%, var(--secondary-beige) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    margin-top: 0;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-text);
    font-weight: 300;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--accent-brown);
}

.cta-button {
    display: inline-block;
    padding: 1rem 3rem;
    background-color: var(--accent-brown);
    color: var(--white);
    text-decoration: none;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--dark-text);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Section Styles */
section {
    padding: 6rem 5%;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-accent);
    margin-bottom: 0.5rem;
}

/* Properties Grid */
.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.property-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    color: var(--dark-text);
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.property-image {
    width: 100%;
    height: 300px;
    background-color: var(--secondary-beige);
    background-size: cover;
    background-position: center;
}

.property-info {
    padding: 2rem;
}

.property-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
}

.property-meta {
    display: flex;
    gap: 1.5rem;
    margin: 1rem 0;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    color: var(--accent-brown);
}

.property-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.property-description {
    font-size: 1rem;
    color: #6B5B52;
    margin-bottom: 1.5rem;
}

.view-details {
    color: var(--gold-accent);
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid var(--gold-accent);
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.view-details:hover {
    color: var(--dark-text);
    border-bottom-color: var(--dark-text);
}

/* Property Detail Page */
.property-hero {
    height: 60vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 3rem 5%;
    margin-top: 80px;
}

.property-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
}

.property-hero-content {
    position: relative;
    z-index: 1;
    color: var(--white);
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.property-hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.property-details {
    background-color: var(--light-grey);
}

.details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Lato', sans-serif;
    padding: 0.8rem;
    background-color: var(--white);
    border-radius: 4px;
}

.amenity-icon {
    color: var(--gold-accent);
    font-size: 1.2rem;
}

.booking-widget {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 120px;
}

.booking-widget h3 {
    margin-bottom: 1.5rem;
    text-align: center;
}

/* About Section */
.about-section {
    background-color: var(--primary-beige);
}

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

/* Contact Section */
.contact-section {
    background-color: var(--light-grey);
}

.contact-info {
    max-width: 600px;
    margin: 2rem auto;
    text-align: center;
}

.contact-item {
    margin: 1.5rem 0;
    font-family: 'Lato', sans-serif;
}

.contact-item a {
    color: var(--accent-brown);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--gold-accent);
}

/* Footer */
footer {
    background-color: var(--dark-text);
    color: var(--secondary-beige);
    padding: 3rem 5%;
    text-align: center;
}

footer p {
    color: var(--secondary-beige);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .details-grid {
        grid-template-columns: 1fr;
    }

    .booking-widget {
        position: static;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

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

    nav ul {
        gap: 1.5rem;
    }

    nav ul li a {
        font-size: 0.85rem;
    }

    .properties-grid {
        grid-template-columns: 1fr;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 4rem 5%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    nav {
        padding: 1rem 5%;
    }

    .logo {
        font-size: 1.5rem;
    }

    nav ul {
        gap: 1rem;
    }

    nav ul li a {
        font-size: 0.75rem;
    }

    .property-hero h1 {
        font-size: 2rem;
    }
}

/* Guesty Widget Styling */
#search-widget_IO312PWQ {
    width: 100%;
    min-height: 400px;
}
