 :root {
            --primaryColor: #ad8b3a;
            --secondaryColor: #2c3e50;
            --lightColor: #f8f5f0;
            --darkColor: #222;
            --fontHeading: 'Cormorant Garamond', serif;
            --fontBody: 'Montserrat', sans-serif;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: var(--fontBody);
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
            background-color: #fff;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: var(--fontHeading);
            font-weight: 700;
            color: var(--secondaryColor);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* Header Styles */
        .about-header {
            height: 60vh;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../image/aboutc1.jpeg') no-repeat center center/cover;
            display: flex;
            align-items: center;
            text-align: center;
            color: #fff;
            padding-top: 100px;
        }
        
        .header-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .about-header h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            letter-spacing: 1px;
            color: var(--lightColor);
        }
        
        .about-header p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            font-weight: 300;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        /* Breadcrumb */
        .breadcrumb {
            background-color: var(--lightColor);
            padding: 15px 0;
            /* margin-bottom: 40px; */
        }
        
        .breadcrumb-content {
            display: flex;
            justify-content: center;
            list-style: none;
        }
        
        .breadcrumb-content li {
            margin: 0 10px;
            font-size: 0.9rem;
        }
        
        .breadcrumb-content a {
            color: var(--primaryColor);
            text-decoration: none;
        }
        
        .breadcrumb-content span {
            color: var(--secondaryColor);
        }
        
        /* About Intro */
        .about-intro {
            padding: 80px 0;
            background: url('../image/aboutc1.jpeg') fixed;
            background-size: cover;
            position: relative;
        }
        
        .about-intro::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(248, 245, 240, 0.9);
        }
        
        .about-intro-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .about-intro h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .about-intro h2:after {
            content: '';
            position: absolute;
            width: 60%;
            height: 3px;
            background-color: var(--primaryColor);
            bottom: 0;
            left: 20%;
        }
        
        .about-intro p {
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .signature {
            font-family: var(--fontHeading);
            font-size: 2rem;
            color: var(--primaryColor);
            margin-top: 30px;
        }
        
        /* Hotel Features */
        .hotel-features {
            padding: 80px 0;
            background-color: var(--lightColor);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 60%;
            height: 3px;
            background-color: var(--primaryColor);
            bottom: 0;
            left: 20%;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 8px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primaryColor);
            margin-bottom: 20px;
        }
        
        .feature-card h3 {
            margin-bottom: 15px;
        }
        
        /* Gallery Section */
        .gallery {
            padding: 80px 0;
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            height: 300px;
            overflow: hidden;
            border-radius: 8px;
            position: relative;
            cursor: pointer;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-overlay i {
            color: white;
            font-size: 2rem;
        }
        
        /* Team Section */
        .team {
            padding: 80px 0;
            background-color: var(--lightColor);
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .team-member {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
        }
        
        .team-img {
            height: 300px;
            overflow: hidden;
        }
        
        .team-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .team-details {
            padding: 20px;
        }
        
        .team-details h3 {
            margin-bottom: 5px;
        }
        
        .team-details p {
            color: var(--primaryColor);
            font-weight: 500;
            margin-bottom: 15px;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
        }
        
        .social-links a {
            display: inline-block;
            width: 35px;
            height: 35px;
            background: var(--lightColor);
            border-radius: 50%;
            text-align: center;
            line-height: 35px;
            color: var(--secondaryColor);
            transition: background 0.3s, color 0.3s;
        }
        
        .social-links a:hover {
            background: var(--primaryColor);
            color: white;
        }
        
        /* Testimonials */
        .testimonials {
            padding: 80px 0;
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            position: relative;
        }
        
        .testimonial-card i {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 3rem;
            color: rgba(173, 139, 58, 0.1);
        }
        
        .testimonial-text {
            margin-bottom: 20px;
            font-style: italic;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-details h4 {
            margin-bottom: 5px;
        }
        
        .author-details p {
            color: var(--primaryColor);
            font-size: 0.9rem;
        }
        
        /* Awards Section */
        .awards {
            padding: 80px 0;
            background-color: var(--lightColor);
        }
        
        .awards-flex {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 40px;
        }
        
        .award-item {
            text-align: center;
            max-width: 200px;
        }
        
        .award-icon {
            font-size: 3rem;
            color: var(--primaryColor);
            margin-bottom: 15px;
        }
        
        .award-item h3 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../image/aboutc1.jpeg') fixed;
            background-size: cover;
            color: white;
            text-align: center;
        }
        
        .cta-section h2 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 30px;
        }
        
        .cta-section p {
            max-width: 600px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
        }
        
        .btn {
            display: inline-block;
            background: var(--primaryColor);
            color: #fff;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 4px;
            font-weight: 500;
            font-size: 1rem;
            transition: background 0.3s;
        }
        
        .btn:hover {
            background: #9a7835;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .about-header h1 {
                font-size: 2.5rem;
            }
            
            .about-header p {
                font-size: 1rem;
            }
            
            .about-intro h2 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .cta-section h2 {
                font-size: 2rem;
            }
        }