/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    /* margin-right: 516px; */
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.logo-text {
    color: #D4AF37;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #D4AF37;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #D4AF37;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: 
                url('../images/ChatGPT Image Jul 21, 2025, 03_04_35 PM.png') center/cover;
    display: flex;
    align-items: center;
    /* justify-content: space-between;  */
    padding: 0 2rem;
    position: relative;
    object-fit: cover;
}

.hero1 {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('../img_rectangle.png') center/cover;
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    padding: 0 2rem;
    position: relative;
}

.hero-content {
    /* max-width: 600px; */
    color: white;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: white;
}

.hero-subtitle {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: #D4AF37;
    color: white;
}

.btn-primary:hover {
    background: #B8941F;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
}

/* .btn-tertiary {
    background: transparent;
    color: white;
    border: 1px solid #ffffff;;
} */

.btn-tertiary:hover {
    /* background: #D4AF37; */
    color: white;
}

.hero-logo {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #D4AF37;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.hero-logo-img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

/* Info Section */
.info-section {
    padding: 5rem 0;
    background: #f8f8f8;
}

.info-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.info-title {
    font-family: 'Butler', serif;
    font-size: 2.8rem;
    color: #D4AF37;
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 400;
}

.info-text {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
}

/* Highlights Section */
.highlights-section {
    padding: 5rem 0;
    background: #2c2c2c;
    color: white;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 3rem;
    text-align: left;
    position: relative;
}

.section-title::after {
    /* content: '✦';  */
    color: #D4AF37;
    font-size: 1.5rem;
    margin-left: 10px;
}

.highlights-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.highlights-list {
    flex: 2;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.highlight-bullet {
    /* color: #D4AF37; */
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.highlight-text {
    font-size: 18px;
}

.highlights-image {
    flex: 1;
}

/* .highlight-img {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    object-fit: cover;
    transition: transform 0.3s ease;
} */
 .highlight-img {
    padding: 5px;
    border: 2px solid;
    width: 330px;
    height: 330px;

    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.highlight-img:hover {
    transform: scale(1.05);
}

.btn-outline {
    background: transparent;
    color: #C69651;
    border: 1px solid #C69651;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-outline:hover {
    background: #C69651;
    color: white;
}

/* Location Section */
.location-section {
    padding: 5rem 0;
    /* background: #f8f8f8; */
    background: linear-gradient(0deg, rgba(216, 174, 94, 0.23) 0%, rgba(255, 255, 255, 0.23) 100%);
}

.location-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.location-text {
    flex: 1;
}

.location-list {
    list-style: none;
    margin-top: 2rem;
}

.location-list li {
    font-size:18px;
    position: relative;
    padding-left: 20px;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #C69651;
}

.location-list li::before {
    content: '•';
    color: #D4AF37;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.location-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location-img {
    width: 100%;
    height: 286px;
    border-radius: 15px;
    /* object-fit: cover; */
    transition: transform 0.3s ease;
}

.location-img:hover {
    transform: scale(1.05);
}

/* Ideal Section */
.ideal-section {
    padding: 5rem 0;
    /* background: white; */
    background: linear-gradient(0deg, rgba(216, 174, 94, 0.23) 0%, rgba(255, 255, 255, 0.23) 100%);
}

.ideal-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.ideal-text {
    flex: 2;
}

.ideal-list {
    font-size:18px;
    list-style: none;
    margin-top: 2rem;
}

.ideal-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #666;
}

.ideal-list li::before {
    content: '•';
    color: #D4AF37;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.ideal-image {
    flex: 1;
}

/* .ideal-img {
    width: 100%;
    height: 250px;
    transition: transform 0.3s ease;
} */
 .ideal-img {
    border: 2px solid #be9e66;
    padding: 5px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ideal-img:hover {
    transform: scale(1.05);
}

/* Why Kamshet & Experiences Section */
.why-experiences-section {
    padding: 5rem 0;
    /* background: #f8f8f8; */
    background: linear-gradient(0deg, rgba(216, 174, 94, 0.23) 0%, rgba(255, 255, 255, 0.23) 100%);
}

.why-experiences-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.why-list,
.experiences-list {
    list-style: none;
    margin-top: 2rem;
}

.why-list li,
.experiences-list li {
    font-size:18px;
    position: relative;
    padding-left: 20px;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #666;
}

.why-list li::before,
.experiences-list li::before {
    content: '•';
    color: #D4AF37;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* Ready Section */
.ready-section {
    padding: 5rem 0;
    background: linear-gradient(0deg, rgba(216, 174, 94, 0.23) 0%, rgba(255, 255, 255, 0.23) 100%);
    text-align: center;
}

.ready-title {
    font-family: 'Butler', serif;
    font-weight: 400;
    font-size: 48px;
    color: #D4AF37;
    margin-bottom: 1.5rem;
    /* font-style: italic; */
    position: relative;
}

.ready-title::after {
    /* content: '✦'; */
    color: #D4AF37;
    font-size: 18px;
    margin-left: 10px;
}

.ready-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

.ready-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Section */
/* .contact-section {
    padding: 5rem 0;
    background: white;
} */

.contact-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.contact-map {
    flex: 1;
}

.map-img {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    object-fit: cover;
}

.contact-form {
    flex: 1;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #D4AF37;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #666;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #D4AF37;
}

.btn-submit {
    background: #D4AF37;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #B8941F;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-left {
    flex: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.footer-logo span {
    color: #D4AF37;
    font-weight: 600;
    font-size: 0.9rem;
    line-height: 1.2;
}

.footer-tagline {
    font-style: italic;
    margin-bottom: 1rem;
    color: #ccc;
}

.footer-copyright {
    font-size: 0.9rem;
    color: #999;
}

.footer-center {
    flex: 1;
    text-align: center;
}

.footer-center h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    /* color: #D4AF37; */
}

.footer-right {
    flex: 1;
    text-align: right;
}

.footer-right h4 {
    /* color: #D4AF37; */
    margin-bottom: 1rem;
}

.footer-right p {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #D4AF37;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-logo {
        position: static;
        margin-top: 2rem;
        /* margin-right: 0px !important; */
    }

    .info-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
        text-align: center;
    }

    .highlights-content {
        flex-direction: column;
    }

    .location-content {
        flex-direction: column;
    }

    .location-images {
        flex-direction: row;
        gap: 1rem;
    }

    .location-img {
        flex: 1;
        height: 150px;
    }

    .ideal-content {
        flex-direction: column;
    }

    .why-experiences-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ready-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-content {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-right {
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .info-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .ready-title {
        font-size: 1.8rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .location-images {
        flex-direction: column;
    }

    .location-img {
        height: 180px;
    }
}
@media screen and (min-width: 360px) and (max-width: 740px) {
  .ideal-img {
    width: 270px;
    height: 270px;
}
}
.hero-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1000px;
}
@media (max-width: 768px) {
  .info-section {
    padding: 3rem 0 5rem 0;
  }
  .highlights-section {
    padding: 3rem 0 5rem 0;
  }
  .location-section {
    padding: 3rem 0 5rem 0;
  }
  .ideal-section {
    padding: 3rem 0 5rem 0;
  }
  .why-experiences-section {
    padding: 3rem 0 5rem 0;
  }
  .ready-section {
    padding: 3rem 0 5rem 0;
  }
}
@media (max-width: 768px) {
  .investment-container {
    padding: 25px !important;
  }
}