
/*
Theme Name: Solo
Description: A custom WordPress theme built from scratch
Version: 1.0
Author: Negi
*/

/* Reset and Base Styles */
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
            background-color: #FEFEFE;
            color: #382E31;
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Header Styles */
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: #FFD9DA;
            border-bottom: 1px solid #f0f0f0;
            height: 64px;
            display: flex;
            align-items: center;
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            height: 100%;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-decoration: none;
        }

        .logo-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: linear-gradient(135deg, #E894A7 0%, #FFAEB9 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .nav-desktop {
            display: none;
            align-items: center;
            gap: 1.5rem;
        }

        .nav-desktop a {
            color: #382E31;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-desktop a:hover {
            color: #E894A7;
        }

        .services-dropdown {
            position: relative;
        }

        .services-button {
            display: flex;
            align-items: center;
            gap: 0.25rem;
            background: none;
            border: none;
            color: #382E31;
            font-weight: 500;
            cursor: pointer;
            transition: color 0.3s;
        }

        .services-button:hover {
            color: black;
        }
        .services-button svg {
            transition: transform 0.3s;
        }

        .services-button.rotate svg {
            transform: rotate(180deg);
        }
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            margin-top: 0.5rem;
            width: 192px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            border: 1px solid #f0f0f0;
            padding: 0.5rem 0;
            display: none;
            z-index: 50;
        }

        .dropdown-menu.show {
            display: block;
        }

        .dropdown-menu a {
            display: block;
            padding: 0.5rem 1rem;
            color: #382E31;
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.3s;
        }

        .dropdown-menu a:hover {
            color: #2a1f22;
        }

        .btn {
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 9999px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            justify-content: center;
        }

        .btn-primary {
            background: linear-gradient(135deg, #E894A7 0%, #FFAEB9 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(232, 148, 167, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(232, 148, 167, 0.4);
            color:black;
        }

        .mobile-menu-btn {
            display: flex;
            background: none;
            border: none;
            color: #382E31;
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-menu {
            display: none;
            background: white;
            border-top: 1px solid #f0f0f0;
            padding: 1rem;
        }

        .mobile-menu.show {
            display: block;
        }

        .mobile-nav {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .mobile-services {
            padding-left: 1rem;
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .mobile-services a {
            color: #382E31;
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.3s;
        }

        .mobile-services a:hover {
            color: black;
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3), transparent);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            text-align: center;
            color: white;
            max-width: 64rem;
            padding: 0 1rem;
        }

        .hero-title {
            font-size: 68px;
            font-weight: bold;
            margin-bottom: 2rem;
            line-height: 1.2;
            letter-spacing: 0.05em;
        }

        .video-controls {
            position: absolute;
            top: 1rem;
            right: 1rem;
            z-index: 20;
            display: flex;
            gap: 0.5rem;
        }

        .video-control-btn {
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            color: white;
            padding: 0.5rem;
            border-radius: 50%;
            cursor: pointer;
            transition: background 0.3s;
        }

        .video-control-btn:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        /* Section Styles */
        section {
            padding: 5rem 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .badge {
            display: inline-block;
            padding: 0.5rem 1rem;
            background-color: #382E31;
            color: white;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 1rem;
            box-shadow: 0 0 10px rgba(232, 148, 167, 0.3);
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: bold;
            margin-bottom: 1.5rem;
            color: #382E31;
        }

        .section-subtitle {
            font-size: 1.25rem;
            color: #666;
            max-width: 32rem;
            margin: 0 auto;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background: #FEFEFE;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(232, 148, 167, 0.15);
            border: 1px solid #fce7e8;
            transition: all 0.5s;
            position: relative;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(232, 148, 167, 0.25);
        }

        .service-image {
            position: relative;
            height: 16rem;
            overflow: hidden;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .service-card:hover .service-image img {
            transform: scale(1.1);
        }

        .service-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(147, 51, 234, 0.2), transparent);
        }

        .service-title {
            position: absolute;
            bottom: 1rem;
            left: 1rem;
            color: white;
            font-size: 1.25rem;
            font-weight: bold;
            z-index: 10;
        }

        /* Reviews Section */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .review-card {
            background: #FEFEFE;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid #f0f0f0;
        }

        .review-video {
            position: relative;
            aspect-ratio: 16/9;
        }

        .review-video video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .review-service-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            background: #E894A7;
            color: white;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 500;
        }

        .review-content {
            padding: 1rem;
            text-align: center;
        }

        .review-quote {
            font-size: 1rem;
            color: #555;
            margin-bottom: 1rem;
            font-style: italic;
        }

        .review-author {
            font-weight: 600;
            color: #333;
            font-size: 0.875rem;
        }

        .review-location {
            color: #666;
            font-size: 0.75rem;
        }

        /* About Section */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .about-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            color: white;
        }

        .feature-icon.primary {
            background: linear-gradient(135deg, #E894A7 0%, #FFAEB9 100%);
        }

        .feature-icon.secondary {
            background: #382E31;
        }

        .feature-content h3 {
            font-weight: 600;
            color: #333;
            margin-bottom: 0.5rem;
        }

        .feature-content p {
            color: #666;
            font-size: 0.875rem;
        }

        .about-image {
            position: relative;
            height: 31.25rem;
            border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-decoration {
            position: absolute;
            border-radius: 50%;
            opacity: 0.2;
        }

        .about-decoration.large {
            width: 8rem;
            height: 8rem;
            background: linear-gradient(135deg, #FFAEB9 0%, #FFB0C9 100%);
            bottom: -1.5rem;
            right: -1.5rem;
        }

        .about-decoration.small {
            width: 6rem;
            height: 6rem;
            background: #FFD9DA;
            top: -1.5rem;
            left: -1.5rem;
        }

        /* Locations Section */
        .locations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 2rem;
            max-width: 64rem;
            margin: 0 auto;
        }

        .location-card {
            background: #FEFEFE;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid #f0f0f0;
            transition: all 0.5s;
        }

        .location-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .location-image {
            position: relative;
            height: 12rem;
            overflow: hidden;
        }

        .location-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .location-card:hover .location-image img {
            transform: scale(1.1);
        }

        .location-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
        }

        .location-content {
            padding: 1.5rem;
        }

        .location-title {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            color: #333;
        }

        .location-featured {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: #666;
            margin-bottom: 1rem;
        }

        .location-info {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .location-info-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: #666;
        }

        .location-info-item svg {
            color: #E894A7;
            width: 20px;
            height: 20px;
        }

        /* App Download Section */
        .app-download {
            background: linear-gradient(135deg, #382E31 0%, #2a1f22 100%);
            border-radius: 1.5rem;
            padding: 3rem 2rem;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .app-download::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.1);
        }

        .app-download-content {
            position: relative;
            z-index: 10;
        }

        .app-icon {
            width: 5rem;
            height: 5rem;
            border-radius: 50%;
            background: linear-gradient(135deg, #E894A7 0%, #FFAEB9 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: white;
        }

        .app-title {
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .app-subtitle {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            max-width: 32rem;
            margin-left: auto;
            margin-right: auto;
            color: rgba(255, 255, 255, 0.9);
        }

        .app-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            align-items: center;
            margin-bottom: 2rem;
        }

        .app-button {
            background: black;
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 9999px;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: background 0.3s;
        }

        .app-button:hover {
            background: #333;
        }

        .app-button-icon {
            width: 1.5rem;
            height: 1.5rem;
            background: white;
            color: black;
            border-radius: 0.25rem;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: bold;
        }

        .app-button-text {
            text-align: left;
        }

        .app-button-subtitle {
            font-size: 0.75rem;
        }

        .app-button-title {
            font-weight: 600;
        }

        .app-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            max-width: 32rem;
            margin: 0 auto;
        }

        .app-feature {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
        }

        .app-feature-icon {
            width: 2rem;
            height: 2rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }
        /* Responsive Design */
        @media (min-width: 768px) {
            .container {
                padding: 0 1.5rem;
            }

            .nav-desktop {
                display: flex;
            }

            .mobile-menu-btn {
                display: none;
            }
        }

        @media (max-width: 767px) {
            .about-grid {
                grid-template-columns: 1fr;
            }

            .locations-grid {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .reviews-grid {
                grid-template-columns: 1fr;
            }

            .app-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .app-features {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }

        /* Utility Classes */
        .text-center {
            text-align: center;
        }

        .hidden {
            display: none;
        }

        .flex {
            display: flex;
        }

        .items-center {
            align-items: center;
        }

        .gap-2 {
            gap: 0.5rem;
        }

        .w-full {
            width: 100%;
        }

        .mt-6 {
            margin-top: 1.5rem;
        }

        .mb-4 {
            margin-bottom: 1rem;
        }

        .text-lg {
            font-size: 1.125rem;
        }

        .font-semibold {
            font-weight: 600;
        }