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

:root {
    --gold: #c9a962;
    --gold-dark: #a88a4a;
    --black: #0a0a0a;
    --dark: #1a1a1a;
    --gray: #2a2a2a;
    --text-color: #e0e0e0;
    --text-light: #888;
    --border-color: #333;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--black);
}

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

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

ul {
    list-style: none;
}

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

.section {
    padding: 100px 0;
}

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

.section-tag {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--gold);
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 400;
}

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

.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 0;
    font-size: 0.95rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    text-transform: uppercase;
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
}

.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--black);
}

.btn-sm {
    padding: 10px 25px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 18px 50px;
}

.btn-block {
    width: 100%;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid var(--border-color);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-size: 1.8rem;
    color: #fff;
    letter-spacing: 5px;
}

.logo-sub {
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 3px;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: #fff;
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 1px;
    background: #fff;
    transition: var(--transition);
}

.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    background: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1920&h=1080&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.9));
}

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 1;
}

.hero-tag {
    display: inline-block;
    font-size: 0.85rem;
    letter-spacing: 5px;
    color: var(--gold);
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 5rem;
    letter-spacing: 15px;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.5rem;
    letter-spacing: 5px;
    margin-bottom: 15px;
    color: var(--gold);
}

.hero-desc {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.intro {
    background: var(--dark);
    padding: 80px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.intro-item {
    text-align: center;
    padding: 30px 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.intro-item:hover {
    border-color: var(--gold);
}

.intro-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}

.intro-item h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 400;
    letter-spacing: 2px;
}

.intro-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

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

.signature-card {
    background: var(--dark);
    overflow: hidden;
    transition: var(--transition);
}

.signature-card:hover {
    transform: translateY(-10px);
}

.signature-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.signature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.signature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.signature-card:hover .signature-overlay {
    opacity: 1;
}

.view-btn {
    width: 60px;
    height: 60px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 1.5rem;
}

.signature-info {
    padding: 30px;
    text-align: center;
}

.signature-info h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 400;
}

.signature-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.signature-info .price {
    font-size: 1.2rem;
    color: var(--gold);
}

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

.about-content .section-tag {
    margin-bottom: 20px;
}

.about-content h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 400;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 50px;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    color: var(--gold);
    font-weight: 400;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.about-image img {
    border: 1px solid var(--border-color);
}

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

.room-card {
    background: var(--dark);
    overflow: hidden;
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-5px);
}

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

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.room-info {
    padding: 25px;
    text-align: center;
}

.room-info h3 {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 400;
}

.room-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.room-price {
    color: var(--gold);
    font-size: 0.9rem;
}

.room-cta {
    text-align: center;
    margin-top: 50px;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--dark);
    padding: 40px;
    border: 1px solid var(--border-color);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--gold);
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: var(--gold);
}

.author-info h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.85rem;
}

.cta {
    background: var(--dark);
    text-align: center;
    padding: 120px 0;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 400;
}

.cta-content p {
    color: var(--text-light);
    margin-bottom: 40px;
}

.footer {
    background: var(--black);
    padding: 80px 0 0;
    border-top: 1px solid var(--border-color);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.footer-brand .logo-text {
    font-size: 1.5rem;
}

.footer-contact {
    display: flex;
    gap: 30px;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.footer-contact .contact-item i {
    color: var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-color);
}

.footer-col h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 25px;
    font-weight: 400;
    letter-spacing: 2px;
}

.footer-col p {
    color: var(--text-light);
    line-height: 1.8;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-light);
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-col .hours li {
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
}

.footer-col .contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.footer-col .contact-info i {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition);
}

.social-links a:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.page-banner {
    position: relative;
    height: 350px;
    background: url('https://images.unsplash.com/photo-1559339352-11d035aa65de?w=1920&h=600&fit=crop') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.8);
}

.page-banner .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-banner h1 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 5px;
}

.page-banner p {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 3px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--dark);
    padding: 50px;
    text-align: center;
    max-width: 400px;
    border: 1px solid var(--border-color);
}

.modal-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 25px;
}

.modal-content h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 400;
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: 25px;
}
