/* Global Styles */
/* :root {
    --primary-color: #1a1a1a;
    --secondary-color: #b69f58;
    --light-color: #ffffff;
    --dark-color: #000000;
    --grey-color: #f5f5f5;
    --text-color: #333333;
    --font-primary: 'Cormorant Garamond', serif;
    --font-secondary: 'Montserrat', sans-serif;
} */


:root {
    --primary-color: #111111;     /* Nearly black */
    --secondary-color: #b69f58;    /* Gold accent */
    --light-color: #ffffff;        /* White */
    --dark-color: #000000;         /* True black */
    --grey-color: #f8f8f8;         /* Soft light grey */
    --text-color: #262626;         /* Rich black for text */
    --font-primary: 'Playfair Display SC', serif;
    --font-secondary: 'Montserrat', sans-serif;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    font-size: 1.0rem;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    padding-top: 90px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 400;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    color: var(--primary-color);
}

.section-title:after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: var(--secondary-color);
    margin: 10px auto 0;
}

.btn-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--light-color);
    padding: 12px 28px;
    border: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-color);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--secondary-color);
    padding: 10px 25px;
    border: 1px solid var(--secondary-color);
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem; /* Reduced from 1.5rem to 1rem to make the header less tall */
}

.logo img {
    height: 50px; /* Increased from 40px to make the logo bigger */
}

.main-nav ul {
    display: flex;
}

.main-nav ul li {
    margin-left: 2rem;
}

.main-nav ul li a {
    font-family: var(--font-secondary);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.main-nav ul li a:hover {
    color: var(--secondary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 2px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 91vh; /* Changed from 100vh to make it less tall */
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: var(--light-color);
}

.hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-image {
    margin-top: 3rem;
    max-width: 100%;
}

.hero-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    max-height: 350px;
    object-fit: cover;
}

.story-image  {
    display: flex;
  justify-content: center;
  align-items: center;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background-color: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--grey-color);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
}

/* Philosophy Section - Updated for full width */

.philosophy {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--light-color);
}

.philosophy .section-title {
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
}

.philosophy .section-title:after {
    background: var(--secondary-color);
}

.philosophy-lead {
    color: var(--secondary-color);
    font-size: 28px;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 30px;
    text-align: center;
}

.philosophy-principles span {
    font-weight: 600;
    color: var(--secondary-color);
}

.philosophy-principles li:before {
    color: var(--secondary-color);
}

/* Membership Section */
.membership {
    padding: 6rem 0;
    background-color: var(--primary-color);
    color: var(--light-color);
}

.membership .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.membership-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.membership-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.membership-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.tier-card ul{
    list-style-type: disc;
    padding-left: 1.5em;
   }

   .tier-options {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.tier-option {
    flex: 1;
    padding: 25px;
    background-color: var(--grey-color);
    border: 1px solid var(--secondary-color);
    text-align: center;
}

.tier-option h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .tier-options {
        flex-direction: column;
    }
}


/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background-color: var(--grey-color);
}

.testimonial {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
}

.testimonial p {
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
}

.testimonial-author .name {
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.testimonial-author .location {
    font-size: 0.9rem;
    color: #777;
}

/* Global Reach Section */
.global-reach {
    padding: 6rem 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.world-map {
    margin-bottom: 3rem;
    text-align: center;
}

.world-map img {
    max-width: 100%;
}

.locations-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.location h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.location ul li {
    margin-bottom: 0.5rem;
}

/* Newsletter Section */
.newsletter {
    padding: 6rem 0;
    background-color: var(--primary-color);
    color: var(--light-color);
    text-align: center;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    font-family: var(--font-secondary);
}

.newsletter-form button {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

/* Footer */
footer {
    background-color: #111;
    color: #999;
    padding: 4rem 0 2rem;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    color: var(--light-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a:hover {
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light-color);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.copyright {
    margin-bottom: 1rem;
}

.footer-links a {
    margin-left: 1.5rem;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

/* Media Queries */
@media (max-width: 992px) {
    .nav-toggle {
        display: flex;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--light-color);
        padding: 1rem 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: all 0.4s ease;
    }
    
    .main-nav.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .main-nav ul li {
        margin: 1rem 0;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .membership .container {
        grid-template-columns: 1fr;
    }
    
    .membership-content {
        order: 2;
    }
    
    .membership-image {
        order: 1;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        margin-bottom: 1rem;
    }
    
    .newsletter-form button {
        width: 100%;
        border-radius: 0;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        margin-top: 1rem;
    }
    
    .footer-links a {
        margin: 0 0.75rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}