* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --primary: #ff6b9d;
    --primary-dark: #e54b7e;
    --secondary: #8a4fff;
    --accent: #6c5ce7;
    --dark: #1a1a2e;
    --darker: #0f0f1a;
    --light: #f8f9fa;
    --gray: #6c757d;
    --light-gray: #e9ecef;
}

body {
    background-color: #fefefe;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s;
}
.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}
.loader {
    width: 60px;
    height: 60px;
    border: 6px solid #ffe6f0;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s infinite linear;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: padding 0.3s;
}
.header.scrolled {
    padding: 12px 60px;
    background: #fff;
}
.logo {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.logo span {
    font-size: 0.9rem;
    font-weight: 400;
    -webkit-text-fill-color: var(--gray);
    margin-left: 8px;
}
.nav-links {
    display: flex;
    gap: 40px;
}
.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: 0.2s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: 0.3s;
}
.nav-links a:hover {
    color: var(--primary);
}
.nav-links a:hover::after {
    width: 100%;
}
.location-badge {
    background: var(--primary);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(255,107,157,0.3);
}

/* container */
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

/* hero section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin-top: 0;
    background: url('https://images.unsplash.com/photo-1522771739844-6a9f6d5f14af?q=80&w=2071&auto=format&fit=crop') center/cover no-repeat;
    background-attachment: fixed;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(26,26,46,0.9) 0%, rgba(106,13,173,0.7) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: 0 30px;
}
.hero-tagline {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: white;
}
.hero h1 span {
    color: var(--primary);
    border-bottom: 4px solid var(--primary);
    display: inline-block;
}
.hero p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin: 30px 0 40px;
    max-width: 600px;
}
.hero-btns {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.btn {
    display: inline-block;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}
.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 8px 25px rgba(255,107,157,0.4);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255,107,157,0.6);
}
.btn-outline {
    border: 2px solid white;
    color: white;
    background: transparent;
}
.btn-outline:hover {
    background: white;
    color: var(--dark);
    transform: translateY(-3px);
}
.btn-small {
    padding: 10px 25px;
    font-size: 0.9rem;
}
.btn-full {
    width: 100%;
}

/* stats */
.stats {
    display: flex;
    gap: 50px;
    margin: 60px 0 30px;
    flex-wrap: wrap;
}
.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}
.stat-label {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
}

/* section headers */
.section-header {
    text-align: center;
    margin: 60px 0 40px;
}
.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark);
}
.section-header h2 span {
    color: var(--primary);
    border-bottom: 3px solid var(--primary);
    padding-bottom: 5px;
}
.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-top: 15px;
}

/* about section */
.about {
    padding: 80px 0;
}
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-text h3 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 20px;
}
.about-text p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 1.1rem;
}
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}
.about-feature i {
    color: var(--primary);
    font-size: 1.5rem;
}
.about-feature span {
    font-weight: 600;
    color: var(--dark);
}
.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.about-image:hover img {
    transform: scale(1.05);
}

/* amenities */
.amenities {
    padding: 60px 0;
    background: #f9f9fc;
}
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.amenity-card {
    background: white;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255,107,157,0.15);
}
.amenity-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}
.amenity-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark);
}
.amenity-card p {
    color: var(--gray);
}

/* rooms section */
.rooms {
    padding: 80px 0;
}
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.room-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: 0.3s;
}
.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.room-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.room-info {
    padding: 25px;
}
.room-info h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 10px;
}
.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}
.room-features {
    list-style: none;
    margin-bottom: 25px;
}
.room-features li {
    margin: 10px 0;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 10px;
}
.room-features i {
    color: var(--primary);
}

/* gallery section */
.gallery-section {
    padding: 60px 0;
    background: #f9f9fc;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 280px;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: 0.3s;
    font-size: 1.2rem;
    font-weight: 600;
}
.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* location section */
.location {
    padding: 80px 0;
}
.location-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.location-info {
    padding: 40px;
}
.location-info h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--dark);
}
.location-info h3 i {
    color: var(--primary);
    margin-right: 10px;
}
.location-info ul {
    list-style: none;
}
.location-info li {
    margin: 20px 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--gray);
}
.location-info li i {
    color: var(--primary);
    width: 25px;
}
.nearby-places {
    margin-top: 40px;
}
.nearby-places h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--dark);
}
.places-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.places-grid span {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
}
.places-grid i {
    color: var(--primary);
}
.map-container {
    height: 100%;
    min-height: 400px;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* contact form */
.contact-form {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.form-header {
    text-align: center;
    margin-bottom: 40px;
}
.form-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
}
.form-header h2 span {
    color: var(--primary);
}
.form-header p {
    color: var(--gray);
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e1e1;
    border-radius: 10px;
    font-size: 1rem;
    transition: 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* footer */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}
.footer-col p {
    color: #b0b0b0;
    margin-bottom: 20px;
}
.social-links {
    display: flex;
    gap: 15px;
}
.social-links a {
    color: white;
    background: rgba(255,255,255,0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    text-decoration: none;
}
.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}
.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: white;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin: 12px 0;
    color: #b0b0b0;
}
.footer-col ul a {
    color: #b0b0b0;
    text-decoration: none;
    transition: 0.2s;
}
.footer-col ul a:hover {
    color: var(--primary);
    padding-left: 5px;
}
.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #b0b0b0;
}

/* responsive */
@media (max-width: 1000px) {
    .header { padding: 20px 30px; }
    .nav-links { display: none; }
    .hero h1 { font-size: 3.5rem; }
    .about-content { grid-template-columns: 1fr; }
    .location-container { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
    .hero h1 { font-size: 2.8rem; }
    .gallery-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .stats { gap: 30px; }
    .stat-num { font-size: 2rem; }
}