/* Base Styles */
:root {
    --primary-color: #FF5BAC;
    --primary-dark: #D63D8A;
    --primary-light: #FF8EC5;
    --secondary-color: #D4AF37;
    --secondary-dark: #AA8C2C;
    --secondary-light: #FADA5E;
    --white: #FFFFFF;
    --black: #000000;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 4px;
}

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

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--gray-900);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
    border: 2px solid var(--secondary-color);
}

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

.btn-block {
    display: block;
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    padding: 20px 0;
}

.header.sticky {
    background: rgba(0, 0, 0, 0.9);
    padding: 15px 0;
}

.header-alt {
    background: var(--gray-900);
    padding: 15px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo h1 {
    color: var(--white);
    margin-bottom: 0;
    font-size: 2rem;
}

.logo h1 span {
    color: var(--primary-color);
}
.hero-content animate-fadeInUp,h1{
color: white;
}

.menu ul {
    display: flex;
}

.menu ul li {
    margin-left: 30px;
}

.menu ul li:first-child {
    margin-left: 0;
}

.menu ul li a {
    color: var(--white);
    font-weight: 500;
    font-size: 1rem;
    padding: 5px 0;
    position: relative;
}

.menu ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.menu ul li a:hover::after,
.menu ul li a.active::after {
    width: 100%;
}

.contact-info .phone {
    color: var(--white);
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 50px;
    border: 1px solid var(--primary-color);
}

.hamburger-menu {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: var(--transition);
    background-color: var(--white);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: url('../images/bg.webp') no-repeat center center;
    background-size: cover;
}
.hero-content animate-fadeInUp
{
    color: white;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(255, 91, 173, 0) 0%, rgba(212, 175, 55, 0) 100%); */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding-top: 20vh;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(255, 91, 172, 0.3) 100%);
    visibility: hidden;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    visibility: visible;
    opacity: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 0 20px;
    color: var(--white);
    text-align: center;
    margin: 0 auto;
    margin-top: 50px;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.hero-content .btn {
    margin: 0 10px 10px 0;
}

.hero-images {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    display: flex;
}

.image-container {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

.image-container.left {
    clip-path: polygon(0 0, 100% 15%, 100% 100%, 0% 100%);
}

.image-container.right {
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0% 100%);
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    color: var(--gray-900);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.section-header p {
    color: var(--gray-600);
    font-size: 1.1rem;
}

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

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-images {
    flex: 1;
    min-width: 300px;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
}

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

.image-item img {
    transition: transform 0.5s ease;
    height: 100%;
    object-fit: cover;
}

.image-item:hover img {
    transform: scale(1.05);
}

/* Casino Section */
.casino-section {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.casino-section .section-header h2 {
    color: var(--white);
}

.casino-content {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.casino-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.feature {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 40px;
    height: 40px;
}

.feature h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.casino-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
}

.casino-cta h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.casino-cta p {
    margin-bottom: 25px;
}

/* Packages Section */
.packages-section {
    background-color: var(--white);
}

.packages-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.package-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.package-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.package-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.package-tag {
    position: absolute;
    top: 20px;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 15px;
    font-size: 0.9rem;
    font-weight: 500;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.package-details {
    padding: 25px;
}

.package-details h3 {
    margin-bottom: 15px;
    color: var(--gray-900);
}

.package-details ul {
    margin-bottom: 20px;
}

.package-details ul li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.package-details ul li::before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
}

.package-price {
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.package-price .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.package-price .per-night {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* Rooms Section */
.rooms-section {
    background-color: var(--gray-100);
}

.rooms-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.room-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

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

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.room-details {
    padding: 25px;
}

.room-details h3 {
    margin-bottom: 10px;
    color: var(--gray-900);
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.room-features span {
    font-size: 0.85rem;
    color: var(--gray-600);
    padding: 4px 12px;
    background-color: var(--gray-200);
    border-radius: 50px;
}

.room-details p {
    margin-bottom: 20px;
    color: var(--gray-700);
}

.room-price {
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.room-price .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.room-price .per-night {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.contact-section .section-header h2 {
    color: var(--white);
}

.contact-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contact-form {
    flex: 2;
    min-width: 300px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    border: none;
    border-radius: var(--border-radius);
    background-color: rgba(255, 255, 255, 0.9);
}

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

/* Footer */
.footer {
    background-color: var(--gray-900);
    color: var(--gray-300);
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    flex: 1;
    min-width: 200px;
}

.footer-logo h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 10px;
}

.footer-logo h2 span {
    color: var(--primary-color);
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-newsletter {
    flex: 2;
    min-width: 300px;
}

.footer-newsletter h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-newsletter p {
    margin-bottom: 15px;
}

.footer-newsletter form {
    display: flex;
}

.footer-newsletter input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.footer-newsletter button {
    padding: 0 20px;
    border: none;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 500;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    cursor: pointer;
    transition: var(--transition);
}

.footer-newsletter button:hover {
    background-color: var(--primary-dark);
}

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

/* Booking Page Styles */
.booking-hero {
    height: 40vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.booking-hero-content h2 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 10px;
}

.booking-section {
    padding: 80px 0;
    background-color: var(--gray-100);
}

.booking-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.booking-form {
    flex: 2;
    min-width: 300px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.form-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-300);
}

.form-header h3 {
    margin-bottom: 0;
    color: var(--gray-900);
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
    min-width: 200px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--gray-700);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-300);
    border-radius: var(--border-radius);
    background-color: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group.special-requests textarea {
    height: 100px;
    resize: vertical;
}

.form-group.terms {
    margin-top: 20px;
}

.checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 1rem;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: var(--white);
    border: 1px solid var(--gray-400);
    border-radius: 4px;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container a {
    color: var(--primary-color);
    text-decoration: underline;
}

.booking-summary {
    flex: 1;
    min-width: 300px;
}

.summary-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow-md);
    margin-bottom: 30px;
}

.summary-card h3 {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-300);
}

.summary-details {
    margin-bottom: 30px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.summary-item span:first-child {
    color: var(--gray-600);
}

.summary-item span:last-child {
    font-weight: 500;
}

.summary-price {
    border-top: 1px solid var(--gray-300);
    padding-top: 20px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.price-total {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--gray-300);
    font-weight: 700;
    font-size: 1.2rem;
}

.need-help {
    background-color: var(--gray-200);
    border-radius: var(--border-radius);
    padding: 30px;
}

.need-help h4 {
    margin-bottom: 10px;
    color: var(--gray-900);
}

.need-help p {
    margin-bottom: 15px;
}

.phone-link, .email-link {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 500;
}

/* Legal Pages Styles */
.legal-section {
    padding: 80px 0;
    margin-top: 80px;
}

.legal-header {
    text-align: center;
    margin-bottom: 60px;
}

.legal-header h2 {
    color: var(--gray-900);
    margin-bottom: 10px;
}

.legal-header p {
    color: var(--gray-600);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.legal-text h3 {
    color: var(--gray-900);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-text h3:first-child {
    margin-top: 0;
}

.legal-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-text ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-text ul li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.legal-text strong {
    color: var(--gray-900);
}