@font-face {
    font-family: 'Country Club';
    src: url('country-club-font/countryclub.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Country Club Script';
    src: url('country-club-font/countryclub-script.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0B0B0B;
    color: #ffffff;
    font-family: 'Country Club', serif;
    overflow-x: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

img {
    -webkit-touch-callout: none;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 40px 20px 40px;
    position: relative;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
}

.nav-left {
    justify-content: flex-end;
    padding-right: 60px;
}

.nav-right {
    justify-content: flex-start;
    padding-left: 60px;
}

.nav-left a, .nav-right a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Clash Display', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.nav-left a:hover, .nav-right a:hover {
    opacity: 0.7;
}

.nav-right .social-icon {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-right .social-icon img {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    object-fit: cover;
    display: block;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 50px;
    width: auto;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    margin-bottom: 5px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger span:last-child {
    margin-bottom: 0;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu Overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 11, 11, 0.98);
    z-index: 1000;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Clash Display', sans-serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.mobile-menu a:hover {
    opacity: 0.7;
}

/* Back Button */
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #999999;
    font-family: 'Clash Display', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 20px 140px 0;
    transition: color 0.3s ease;
}

.back-btn:hover {
    color: #ffffff;
}

.back-btn::before {
    content: '\2190';
    font-size: 18px;
}

/* Profile Section */
.profile {
    display: flex;
    gap: 60px;
    padding: 40px 140px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Gallery */
.profile-gallery {
    flex: 0 0 50%;
    max-width: 50%;
}

.gallery-main {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
}

.gallery-main img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}

.gallery-main img.gallery-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: auto;
    object-fit: contain;
    opacity: 0.3;
    pointer-events: none;
    z-index: 2;
    aspect-ratio: unset;
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.gallery-thumbs::-webkit-scrollbar {
    height: 4px;
}

.gallery-thumbs::-webkit-scrollbar-track {
    background: #1a1a1a;
    border-radius: 2px;
}

.gallery-thumbs::-webkit-scrollbar-thumb {
    background: #333333;
    border-radius: 2px;
}

.thumb {
    flex-shrink: 0;
    width: 80px;
    height: 107px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    border: 2px solid transparent;
}

.thumb.active {
    opacity: 1;
    border-color: #C00F3B;
}

.thumb:hover {
    opacity: 0.8;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Profile Details */
.profile-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.profile-location {
    display: inline-block;
    font-family: 'Clash Display', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #C00F3B;
    margin-bottom: 10px;
}

.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
}

.profile-name {
    font-family: 'Country Club', serif;
    font-size: 56px;
    font-weight: normal;
    line-height: 1.1;
}

.profile-description {
    font-family: 'Clash Display', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    color: #999999;
    margin-bottom: 40px;
}

/* About Me Section */
.about-section {
    padding: 0 140px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-section h2 {
    font-family: 'Country Club', serif;
    font-size: 32px;
    font-weight: normal;
    margin-bottom: 25px;
    color: #ffffff;
}

.about-section p {
    font-family: 'Clash Display', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.8;
    color: #999999;
    margin-bottom: 20px;
}

/* Services & Extras */
.profile-section-title {
    font-family: 'Country Club', serif;
    font-size: 32px;
    font-weight: normal;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #2a2a2a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Currency Selector */
.currency-selector {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.currency-btn {
    background-color: #1a1a1a;
    color: #999999;
    border: 1px solid #2a2a2a;
    padding: 6px 14px;
    border-radius: 20px;
    font-family: 'Clash Display', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.currency-btn:hover {
    border-color: #C00F3B;
    color: #ffffff;
}

.currency-btn.active {
    background-color: #C00F3B;
    border-color: #C00F3B;
    color: #ffffff;
}

/* Rates Table */
.rates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.rate-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.rate-card .rate-duration {
    font-family: 'Clash Display', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999999;
    margin-bottom: 8px;
}

.rate-card .rate-price {
    font-family: 'Country Club', serif;
    font-size: 36px;
    color: #ffffff;
}

/* Services Tags */
.services-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.service-tag {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Clash Display', sans-serif;
    font-size: 13px;
    font-weight: 400;
}

/* Extras List */
.extras-list {
    list-style: none;
    margin-bottom: 40px;
}

.extras-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #1a1a1a;
    font-family: 'Clash Display', sans-serif;
    font-size: 15px;
}

.extras-list li:last-child {
    border-bottom: none;
}

.service-name {
    color: #cccccc;
    font-weight: 400;
}

.service-price {
    color: #ffffff;
    font-weight: 600;
}

/* Mobile Header Row - Hidden on Desktop */
.mobile-header-row {
    display: none;
}

/* Mobile Overlay - Hidden on Desktop */
.mobile-overlay {
    display: none;
}

/* Sticky Bottom Bar - Hidden on Desktop */
.sticky-bottom-bar {
    display: none;
}

/* Book Button */
.book-btn {
    display: inline-block;
    background: linear-gradient(135deg, #C00F3B, #8B0A2E);
    color: #ffffff;
    font-family: 'Clash Display', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    padding: 14px 40px;
    border-radius: 30px;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.book-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    100% {
        left: 150%;
    }
}

.book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(192, 15, 59, 0.3);
}

/* Footer */
footer {
    padding: 60px 140px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
}

.footer-brand {
    flex: 1;
}

.footer-brand img {
    height: 40px;
    width: auto;
    margin-bottom: 20px;
}

.footer-brand p {
    font-family: 'Clash Display', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #666666;
    max-width: 350px;
}

.footer-links {
    display: flex;
    gap: 60px;
}

.footer-column h4 {
    font-family: 'Clash Display', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    font-family: 'Clash Display', sans-serif;
    font-size: 14px;
    color: #666666;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-family: 'Clash Display', sans-serif;
    font-size: 13px;
    color: #444444;
}

.footer-bottom .footer-legal {
    display: flex;
    gap: 30px;
}

.footer-bottom .footer-legal a {
    font-family: 'Clash Display', sans-serif;
    font-size: 13px;
    color: #444444;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom .footer-legal a:hover {
    color: #ffffff;
}

/* Responsive */
@media (max-width: 968px) {
    header {
        padding: 25px 30px 15px;
    }

    .profile {
        flex-direction: column;
        padding: 30px 40px 60px;
        gap: 40px;
    }

    .profile-gallery {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .profile-name {
        font-size: 40px;
    }

    .profile-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .book-btn {
        padding: 12px 32px;
        font-size: 14px;
    }

    .back-btn {
        padding: 20px 40px 0;
    }

    .nav-left, .nav-right {
        gap: 15px;
    }

    .nav-left {
        padding-right: 20px;
    }

    .nav-right {
        padding-left: 20px;
    }

    .nav-left a, .nav-right a {
        font-size: 11px;
    }

    .logo img {
        height: 40px;
    }

    .rates-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-section {
        padding: 0 40px 40px;
    }

    .about-section h2 {
        font-size: 26px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 40px;
    }

    footer {
        padding: 40px 40px;
    }
}

@media (max-width: 640px) {
    header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
        padding: 15px 20px;
        position: relative;
    }

    .hamburger {
        display: block;
        order: 0;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        order: 1;
    }

    .logo img {
        height: 35px;
    }

    .nav-left {
        display: none;
    }

    .nav-right {
        order: 2;
        flex: 0;
        gap: 12px;
        padding: 0;
        justify-content: flex-end;
    }

    .nav-right a:not(.social-icon) {
        display: none;
    }

    .nav-right .social-icon span {
        display: none;
    }

    .nav-right .social-icon img {
        width: 22px;
        height: 22px;
    }

    .profile {
        padding: 20px 20px 40px;
    }

    .profile-name {
        font-size: 36px;
        text-align: center;
    }

    .profile-header {
        display: none;
    }

    .profile-header .book-btn {
        display: none;
    }

    .book-btn {
        padding: 8px 20px;
        font-size: 12px;
        flex-shrink: 0;
    }

    .profile-location {
        font-size: 13px;
        margin-bottom: 4px;
        text-align: center;
        display: none;
    }

    /* Mobile Header Row - Back btn + Name/Location */
    .mobile-header-row {
        display: flex;
        align-items: flex-start;
        padding: 15px 20px 0;
        position: relative;
    }

    .mobile-header-row .back-btn {
        padding: 8px 14px;
        font-size: 11px;
        flex-shrink: 0;
        position: absolute;
        left: 20px;
        top: 22px;
        z-index: 2;
        background-color: #1a1a1a;
        border-radius: 8px;
    }

    .desktop-back-btn {
        display: none;
    }

    .mobile-header-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        text-align: center;
    }

    .mobile-header-name {
        font-family: 'Country Club', serif;
        font-size: 42px;
        font-weight: normal;
        color: #ffffff;
        line-height: 1.1;
    }

    .mobile-header-location {
        font-family: 'Clash Display', sans-serif;
        font-size: 13px;
        font-weight: 500;
        letter-spacing: 1px;
        text-transform: uppercase;
        color: #C00F3B;
        margin-top: 4px;
    }

    .profile-description {
        font-size: 14px;
    }

    .profile-section-title {
        font-size: 24px;
    }

    .currency-btn {
        padding: 5px 10px;
        font-size: 11px;
    }

    .back-btn {
        padding: 15px 20px 0;
        font-size: 11px;
    }

    .rates-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .rate-card {
        padding: 14px;
    }

    .rate-card .rate-duration {
        font-size: 11px;
    }

    .rate-card .rate-price {
        font-size: 32px;
    }

    .service-tag {
        font-size: 12px;
        padding: 6px 12px;
    }

    .extras-list li {
        font-size: 14px;
    }

    .about-section {
        padding: 0 20px 30px;
    }

    .about-section h2 {
        font-size: 22px;
    }

    .about-section p {
        font-size: 14px;
    }

    .gallery-thumbs {
        gap: 8px;
    }

    .gallery-thumbs .thumb {
        width: 60px;
        height: 80px;
        border-radius: 8px;
    }

    footer {
        padding: 30px 20px;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-links {
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-bottom .footer-legal {
        justify-content: center;
    }

    /* Sticky Bottom Bar - Mobile Only */
    .sticky-bottom-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-image: url('bottombarbackground.png');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding: 14px 20px;
        justify-content: space-between;
        align-items: center;
        z-index: 999;
        box-sizing: border-box;
    }

    .sticky-bottom-bar .availability-text {
        font-family: 'Clash Display', sans-serif;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: #ffffff;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .sticky-bottom-bar .availability-text::before {
        content: '';
        display: inline-block;
        width: 8px;
        height: 8px;
        background-color: #4CAF50;
        border-radius: 50%;
        animation: pulse-dot 1.5s ease-in-out infinite;
        flex-shrink: 0;
    }

    @keyframes pulse-dot {
        0%, 100% {
            opacity: 1;
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.5);
        }
        50% {
            opacity: 0.7;
            transform: scale(1.2);
            box-shadow: 0 0 0 6px rgba(76, 175, 80, 0);
        }
    }

    .sticky-bottom-bar .book-btn {
        padding: 10px 28px;
        font-size: 12px;
        flex-shrink: 0;
    }

    /* Add bottom padding so content isn't hidden behind sticky bar */
    body {
        padding-bottom: 60px;
    }
}
