/**
 * Raccoon Valley Golf Club - Custom Styles
 */

:root {
    --primary-green: #1F3D2B;
    --gold-accent: #C8A951;
    --dark-green: #152A1E;
    --white: #FFFFFF;
    --cream: #F8F6F3;
    --text-dark: #2C3E50;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-green);
}

/* Top Bar */
.top-bar {
    background: var(--primary-green);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
}

.top-bar-right {
    text-align: right;
}

.course-status i {
    color: #4CAF50;
    margin-right: 5px;
}

/* Navigation */
.navbar {
    background: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-size: 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}
.site-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
}

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

.logo-container i {
    font-size: 40px;
    color: var(--primary-green);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
}

.logo-subtitle {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-accent);
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    padding: 10px 15px;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-green);
}


/* Buttons */
.btn {
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--gold-accent);
    border: none;
    color: white;
}

.btn-primary:hover {
    background: #B89741;
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: var(--primary-green);
}

.btn-white:hover {
    background: var(--cream);
}


/* Hero Section */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background: url('../images/Image-011.jpg') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

/* Heading */
.hero-title {
    font-size: 55px;
    line-height: 1.1;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

/* Description */
.hero-description {
    font-size: 18px;
	font-weight: 600;
    line-height: 1.7;
    color: #ffffff;
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

/* Button */
.tee-time-btn {
    display: inline-block;
    padding: 16px 40px;
    background: #5BAF32;
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.tee-time-btn:hover {
    background: #4d972b;
    transform: translateY(-2px);
}
@media (max-width: 991px) {

    .hero-section {
        height: 75vh;
        min-height: 500px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.6;
    }
}

@media (max-width: 767px) {

    .hero-section {
        height: 70vh;
        min-height: 450px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 34px;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    .tee-time-btn {
        padding: 14px 28px;
        font-size: 16px;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.page-header h1 {
    color: white;
    font-size: 48px;
    margin-bottom: 10px;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-dark {
    background: #12343b;
    color: white;
}

.section-dark h2, .section-dark h3, .section-dark p {
    color: white;
}

.section-light {
    background: var(--cream);
}

.section-title {
    font-size: 42px;
    margin-bottom: 30px;
}

/* Cards */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.card-img-top {
    height: 250px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

/* Membership Cards */
.membership-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s;
    height: 100%;
}

.membership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 30px rgba(0,0,0,0.2);
}

.membership-card.featured {
    border: 2px solid var(--gold-accent);
}

.membership-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
}

.membership-card .price {
    font-size: 48px;
    font-weight: 800;
    color: var(--gold-accent);
    margin: 20px 0;
}

.membership-card .billing {
    color: #777;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.features-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.features-list i {
    color: var(--gold-accent);
    margin-right: 10px;
}

/* Stats */
.stat-box {
    text-align: center;
    padding: 20px;
	transition: all 0.3s ease;
}

.stat-box i {
    color: #d4a373;
	transition: all 0.3s ease;
    display: inline-block;
}
.stat-box:hover i {
    transform: translateY(-5px);
    color: #ffd166;
}

.stat-box h3 {
    font-size: 48px;
    margin: 15px 0 10px;
    color: white;
}

.stat-box p {
    color: rgba(255,255,255,0.9);
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    height: 100%;
}

.testimonial-text {
    font-style: italic;
    margin: 20px 0;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-green);
}

/* Forms */
.form-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.form-control {
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 12px;
}

.form-control:focus {
    border-color: var(--gold-accent);
    box-shadow: 0 0 0 0.2rem rgba(200, 169, 81, 0.15);
}

/* Contact */
.contact-info-box {
    background: var(--cream);
    padding: 30px;
    border-radius: 10px;
    height: 100%;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 24px;
    color: var(--gold-accent);
}

/* Booking Box */
.booking-box {
    background: white;
    padding: 60px 40px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.15);
}

/* Policy Cards */
.policy-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    height: 100%;
}

/* Footer */
.footer {
    background: #1E293B;
    color: white;
    padding: 60px 0 20px;
}

.footer h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--gold-accent);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--gold-accent);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}
.footer .fa-map-marker-alt,
.footer .fa-phone,
.footer .fa-envelope{
    color: #D4AF37;
}

/* Mobile Sticky Button */
.mobile-sticky-book {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 999;
    display: none;
}

/* Utility */
.text-gold {
    color: var(--gold-accent);
}

.bg-gold {
    background: var(--gold-accent);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-tagline {
        font-size: 18px;
    }
    
    .mobile-sticky-book {
        display: block;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
}
