/* ===================================
   Variables & Reset
=================================== */
:root {
    --plum-dark: #4A234F;
    --plum-primary: #7B3F7B;
    --plum-light: #A855A8;
    --plum-pale: #F3E8F3;
    --plum-bg: #FDF5FD;
    
    --amber-dark: #B45309;
    --amber-primary: #D97706;
    --amber-light: #FCD34D;
    --amber-pale: #FFFBEB;
    
    --text-dark: #1F1F2E;
    --text-gray: #4A4A5A;
    --text-light: #6B6B7B;
    
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(74, 35, 79, 0.08);
    --shadow-md: 0 8px 24px rgba(74, 35, 79, 0.12);
    --shadow-lg: 0 16px 48px rgba(74, 35, 79, 0.16);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===================================
   Typography
=================================== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: 1.5rem;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--plum-primary);
    background: var(--plum-pale);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

/* ===================================
   Buttons
=================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--plum-primary);
    color: var(--white);
    border-color: var(--plum-primary);
}

.btn-primary:hover {
    background: var(--plum-dark);
    border-color: var(--plum-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--white);
    color: var(--plum-dark);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--plum-pale);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-full {
    width: 100%;
}

/* ===================================
   Navbar
=================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    transition: color 0.3s ease;
}

.navbar.scrolled .logo {
    color: var(--plum-dark);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.navbar.scrolled .nav-links a {
    color: var(--text-gray);
}

.nav-links a:hover {
    color: var(--amber-light);
}

.navbar.scrolled .nav-links a:hover {
    color: var(--plum-primary);
}

.btn-nav {
    background: var(--amber-primary);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: var(--amber-dark);
    transform: translateY(-1px);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar.scrolled .mobile-toggle span {
    background: var(--plum-dark);
}

/* ===================================
   Hero
=================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/7746084/pexels-photo-7746084.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center/cover no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(74, 35, 79, 0.55) 0%,
        rgba(74, 35, 79, 0.45) 50%,
        rgba(74, 35, 79, 0.70) 100%
    );
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 560px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-btns .btn {
    padding: 16px 36px;
}

/* ===================================
   About Section
=================================== */
.about-section {
    padding: 120px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-text .section-label {
    margin-bottom: 16px;
}

.about-text h2 {
    margin-bottom: 24px;
    color: var(--plum-dark);
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 16px;
    font-size: 1.05rem;
}

.feature-list {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.feature-list li svg {
    color: var(--plum-primary);
    flex-shrink: 0;
}

/* ===================================
   Amenities Section
=================================== */
.amenities-section {
    padding: 120px 0;
    background: var(--plum-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    color: var(--plum-dark);
    margin-top: 16px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.amenity-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 1px solid rgba(123, 63, 123, 0.06);
}

.amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--plum-pale);
}

.amenity-card .icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--plum-pale);
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    color: var(--plum-primary);
    transition: all 0.3s ease;
}

.amenity-card:hover .icon {
    background: var(--plum-primary);
    color: var(--white);
}

.amenity-card h3 {
    margin-bottom: 12px;
    color: var(--text-dark);
}

.amenity-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===================================
   Location Section
=================================== */
.location-section {
    padding: 120px 0;
    background: var(--white);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: stretch;
}

.location-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.location-text .section-label {
    margin-bottom: 16px;
}

.location-text h2 {
    color: var(--plum-dark);
    margin-bottom: 20px;
}

.location-text p {
    color: var(--text-gray);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.location-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.location-features li svg {
    color: var(--amber-primary);
    flex-shrink: 0;
}

.location-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 400px;
}

/* ===================================
   Contact Section
=================================== */
.contact-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--plum-bg) 0%, var(--amber-pale) 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info .section-label {
    margin-bottom: 16px;
}

.contact-info h2 {
    color: var(--plum-dark);
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--text-gray);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-item .icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-sm);
    color: var(--plum-primary);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.contact-item p, .contact-item a {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-item a:hover {
    color: var(--plum-primary);
}

/* Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h3 {
    font-family: var(--font-heading);
    color: var(--plum-dark);
    margin-bottom: 32px;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--plum-pale);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--off-white);
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--plum-primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(123, 63, 123, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.success-message {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    animation: fadeIn 0.5s ease;
}

.success-message svg {
    color: #16A34A;
    margin-bottom: 16px;
}

.success-message h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    margin-bottom: 8px;
}

.success-message p {
    color: var(--text-gray);
}

/* ===================================
   Footer
=================================== */
.footer {
    background: var(--plum-dark);
    color: var(--white);
    padding: 64px 0 32px;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-brand h3 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--amber-light);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* ===================================
   Animations
=================================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Responsive
=================================== */
@media (max-width: 1024px) {
    .about-grid,
    .contact-wrapper {
        gap: 48px;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        box-shadow: var(--shadow-lg);
        transition: right 0.4s ease;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        color: var(--text-dark) !important;
        font-size: 1.1rem;
    }
    
    .nav-links a:hover {
        color: var(--plum-primary) !important;
    }
    
    .btn-nav {
        background: var(--plum-primary) !important;
        color: var(--white) !important;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-btns {
        flex-direction: column;
    }
    
    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }
    
    .about-grid,
    .location-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image img {
        height: 300px;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 32px 24px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .about-section,
    .amenities-section,
    .location-section,
    .contact-section {
        padding: 80px 0;
    }
}
