/* Fonts */
@font-face {
    font-family: 'Magelo';
    src: url('../fonts/magelo/magelo-regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 200;
}

h2 {
    font-size: 2.5rem;
    font-weight: 300;
}

h3 {
    font-size: 1.8rem;
    font-weight: 300;
}

h4 {
    font-size: 1.4rem;
    font-weight: 400;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.8;
}

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

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid #333;
    background: transparent;
    color: #333;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 150px;
}

.btn:hover {
    background: #333;
    color: #fff;
}

.btn-primary {
    background: #333;
    color: #fff;
}

.btn-primary:hover {
    background: transparent;
    color: #333;
}

.btn-secondary {
    background: #f8f8f8;
    border: 1px solid #ddd;
    color: #333;
}

.btn-outline {
    background: transparent;
    border: 1px solid #333;
    color: #333;
    margin: 0.5rem;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    font-weight: 300;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.nav-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 1000;
    position: relative;
    margin-left: auto;
}

.logo {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: white;
}

.nav-menu {
    position: fixed;
    right: -50%;
    top: 0;
    width: 50%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 2rem;
    transition: right 0.4s ease-in-out;
    z-index: 999;
}

.nav-menu.active {
    right: 0;
}

.nav-link {
    font-size: 1.1rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
    transition: all 0.3s ease;
    padding: 1rem 2rem;
    border-bottom: 1px solid transparent;
    text-align: center;
    width: 100%;
    text-decoration: none;
}

.nav-link:hover {
    color: #f39c12;
    border-bottom-color: #f39c12;
}

.hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.bar {
    width: 25px;
    height: 2px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    animation: zoomIn 8s ease-in-out infinite;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-logo {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-title {
    font-family: 'Magelo', serif;
    font-size: 4rem;
    font-weight: 400;
    margin-bottom: 3rem;
    letter-spacing: 1px;
    line-height: 1.1;
}

.cookie-banner {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 2rem;
    border-radius: 5px;
    color: #333;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
}

.cookie-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    background: white;
    font-size: 0.8rem;
    cursor: pointer;
}

.cookie-btn.active {
    background: #f39c12;
    color: white;
    border-color: #f39c12;
}

/* Explore Section */
.explore {
    background: #f8f8f8;
    padding: 2rem 0;
    text-align: center;
}

.explore-subtitle {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
}

/* Rooms Section */
.rooms {
    background: #f39c12;
    padding: 4rem 0;
    color: white;
}

.rooms-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

.rooms-text .section-title {
    color: white;
    text-align: left;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.rooms-features p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.rooms-image {
    position: relative;
}

.room-card-large {
    height: 300px;
    background: url('https://picsum.photos/id/164/800/400') center/cover;
    position: relative;
    border-radius: 5px;
    border: 8px solid white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.room-type {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.room-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

.room-card {
    height: 150px;
    background: url('https://picsum.photos/id/162/400/200') center/cover;
    position: relative;
    border-radius: 3px;
    border: 6px solid white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.booking-section {
    text-align: center;
    margin: 4rem auto 0;
    max-width: 1200px;
    padding: 0 2rem;
}

.booking-question {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: white;
    font-weight: 300;
}

/* Feature Cards Section */
.feature-cards {
    padding: 4rem 0;
    background: white;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-card {
    height: 300px;
    position: relative;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.feature-card.discover {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://picsum.photos/id/188/800/400') center/cover;
}

.feature-card.restaurant {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                #f39c12;
    background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.feature-card.radio {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://picsum.photos/id/453/800/400') center/cover;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1.2;
}

.spotify-logo {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-size: 1.5rem;
}

/* Location Section */
.location {
    background: #e91e63;
    padding: 4rem 0;
    color: white;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

.location-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 5px;
}

.location-text .section-title.white {
    color: white;
    text-align: left;
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.location-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
    opacity: 0.9;
}

.location-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

/* Neighbourhood Cards */
.neighbourhood {
    padding: 4rem 0;
    background: white;
}

.neighbourhood-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.neighbourhood-card {
    height: 300px;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}

.neighbourhood-card:nth-child(1) {
    background: url('https://picsum.photos/id/225/800/400') center/cover;
}

.neighbourhood-card:nth-child(2) {
    background: url('https://picsum.photos/id/274/800/400') center/cover;
}

.neighbourhood-card:nth-child(3) {
    background: url('https://picsum.photos/id/326/800/400') center/cover;
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1.5rem 1.5rem;
    color: white;
}

.card-overlay h3 {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0;
}

/* Guide Section */
.guide {
    background: #00695c;
    padding: 4rem 0;
    color: white;
}

.guide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

.guide-text h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.guide-text p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.cityguide {
    margin-top: 3rem;
}

.cityguide h4 {
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.guide-image {
    height: 400px;
    background: url('https://picsum.photos/id/403/800/500') center/cover;
    position: relative;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guide-logo {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.guide-label {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Golf Section */
.golf {
    padding: 3rem 0;
    background: #f8f8f8;
}

.golf-card {
    background: url('https://picsum.photos/id/577/1200/300') center/cover;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    border-radius: 5px;
    max-width: 1200px;
    margin: 0 auto;
    background-size: cover;
}

.golf-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 5px;
}

.golf-card h3 {
    position: relative;
    z-index: 1;
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.golf-card p {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.golf-card a {
    position: relative;
    z-index: 1;
    color: white;
    text-decoration: underline;
}

/* Press Section */
.press {
    padding: 4rem 0;
    background: white;
}

.press-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1rem;
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 0 2rem;
    height: 400px;
}

.press-item {
    background: #f0f0f0;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.press-item:hover {
    transform: scale(1.02);
}

.press-item.large {
    grid-row: 1 / 3;
    background: url('https://picsum.photos/id/684/800/600') center/cover;
}

.press-item:nth-child(2) {
    background: url('https://picsum.photos/id/722/400/300') center/cover;
}

.press-item:nth-child(3) {
    background: url('https://picsum.photos/id/798/400/300') center/cover;
}

.press-item:nth-child(4) {
    background: url('https://picsum.photos/id/883/400/300') center/cover;
}

.press-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 2rem 1rem 1rem;
    color: white;
}

.press-tag {
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-address h4,
.footer-links h4 {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.footer-address p {
    line-height: 1.8;
    color: #ccc;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #ccc;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    flex-wrap: wrap;
}

.footer-bottom p {
    color: #ccc;
    font-size: 0.9rem;
}

.footer-badges span {
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .rooms-content,
    .location-content,
    .guide-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .location-text .section-title.white,
    .rooms-text .section-title {
        text-align: center;
    }
    
    .room-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cards-grid,
    .neighbourhood-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .press-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 200px);
        height: auto;
    }
    
    .press-item.large {
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        width: 100%;
        right: -100%;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .room-categories {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .cookie-banner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        left: 1rem;
        right: 1rem;
        transform: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .rooms-content,
    .location-content,
    .guide-content {
        padding: 0 1rem;
    }
}