body {
font-family: 'Lato', sans-serif;
            color: var(--text-primary);
            line-height: 1.6;
            background: linear-gradient(rgba(74, 98, 116, 0.4), rgba(74, 98, 116, 0.4)), 
                        url('../images/activerelease1.png');
            background-position: center;
            background-size: cover;
            background-attachment: fixed;
            overflow-x: hidden;
}

.header {
position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo-img {
width: 48px;
            height: 48px;
}

.logo-title {
font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary);
            line-height: 1.2;
}

.logo-subtitle {
font-size: 0.75rem;
            letter-spacing: 0.1em;
            color: var(--text-secondary);
}

.nav-item {
position: relative;
}

.nav-link {
font-size: 0.875rem;
            font-weight: 500;
            color: var(--text-primary);
            text-decoration: none;
            transition: opacity 0.2s;
            cursor: pointer;
}

.dropdown {
display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            border-radius: 0.5rem;
            margin-top: 0;
            padding-top: 0.5rem;
            min-width: 200px;
            z-index: 1001;
}

.nav-item:hover .dropdown {
display: block;
}

.dropdown a {
display: block;
            padding: 0.75rem 1rem;
            color: var(--text-primary);
            text-decoration: none;
            transition: background-color 0.2s;
}

.dropdown a:hover {
background-color: var(--light);
}

.book-btn {
padding: 0.5rem 1.5rem;
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 600;
            background: rgba(74, 98, 116, 0.9);
            color: white;
            text-decoration: none;
            border-color: rgba(255, 255, 255, 0.3);
            box-shadow: 
                0 4px 16px rgba(74, 98, 116, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
}

.book-btn:hover {
transform: scale(1.05);
            background: rgba(74, 98, 116, 1);
            box-shadow: 
                0 6px 24px rgba(74, 98, 116, 0.35),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.book-btn:active {
transform: scale(0.98);
}

.hamburger span {
width: 28px;
            height: 3px;
            background: var(--primary);
            border-radius: 3px;
            transition: all 0.3s ease;
}

.hero {
margin-top: 80px;
            padding: 5rem 1.5rem;
            text-align: center;
            color: white;
            min-height: 50vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
}

.hero h1 {
font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero p {
font-size: 1.375rem;
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.content {
max-width: 1200px;
            margin: 2rem auto;
            padding: 4rem 1.5rem;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 1.5rem;
            box-shadow: 
                0 8px 32px rgba(31, 38, 135, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.5);
            position: relative;
            overflow: hidden;
}

.content::before {
content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(74, 98, 116, 0.05) 0%, transparent 50%);
            pointer-events: none;
}

.intro-section {
display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            margin-bottom: 4rem;
            padding: 2rem;
            align-items: center;
            position: relative;
            z-index: 1;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 1.5rem;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.4);
            box-shadow: 
                0 8px 32px rgba(31, 38, 135, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.intro-image {
border-radius: 1.5rem;
            overflow: hidden;
            box-shadow: 
                0 12px 48px rgba(31, 38, 135, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.4);
}

.intro-image img {
width: 100%;
            height: auto;
            display: block;
            opacity: 0.7;
}

.intro-text {
position: relative;
            z-index: 1;
}

.intro-text h2 {
font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
            line-height: 1.2;
}

.intro-text p {
font-size: 1.125rem;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
}

.collapsible {
background: rgba(235, 234, 232, 0.5);
            border-radius: 1.25rem;
            overflow: hidden;
            margin-bottom: 2rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.4);
            box-shadow: 
                0 4px 20px rgba(31, 38, 135, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
            position: relative;
            z-index: 1;
}

.collapsible:hover {
box-shadow: 
                0 8px 32px rgba(31, 38, 135, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 0.7);
            transform: translateY(-2px);
}

.collapsible-header {
padding: 1.5rem 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: transparent;
            transition: all 0.3s;
}

.collapsible-header:hover {
background: rgba(255, 255, 255, 0.3);
}

.collapsible-header h2 {
font-family: 'Playfair Display', serif;
            font-size: 1.75rem;
            color: var(--primary);
            margin: 0;
}

.collapsible-icon {
font-size: 1.5rem;
            color: var(--primary);
            transition: transform 0.3s;
}

.collapsible.active .collapsible-icon {
transform: rotate(180deg);
}

.collapsible-content {
max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
            background: rgba(255, 255, 255, 0.4);
}

.collapsible.active .collapsible-content {
max-height: 1000px;
            transition: max-height 0.5s ease-in;
}

.collapsible-inner {
padding: 1.5rem 2rem 2rem;
}

.collapsible-inner h3 {
font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
}

.collapsible-inner ul {
list-style: none;
            padding-left: 0;
}

.collapsible-inner li {
font-size: 1.125rem;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 0.75rem;
            padding-left: 1.5rem;
            position: relative;
}

.collapsible-inner li:before {
content: "✓";
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
}

.cta-section {
background: linear-gradient(135deg, 
                rgba(74, 98, 116, 0.9) 0%, 
                rgba(107, 129, 145, 0.85) 100%);
            padding: 3rem 2rem;
            border-radius: 1.5rem;
            text-align: center;
            color: white;
            margin-top: 3rem;
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 
                0 8px 32px rgba(31, 38, 135, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            position: relative;
            z-index: 1;
}

.cta-section h2 {
font-family: 'Playfair Display', serif;
            font-size: 2rem;
            margin-bottom: 1.5rem;
}

.cta-btn {
display: inline-block;
            padding: 1.25rem 3rem;
            font-size: 1.125rem;
            font-weight: 600;
            background: rgba(235, 234, 232, 0.9);
            color: var(--primary);
            text-decoration: none;
            border-radius: 1rem;
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.9);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.6);
            position: relative;
            overflow: hidden;
}

.cta-btn::before {
content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(
                110deg,
                transparent 40%,
                rgba(255, 255, 255, 0.6) 50%,
                transparent 60%
            );
            background-size: 200% 100%;
            opacity: 0;
            transition: opacity 0.3s;
}

.cta-btn:hover::before {
animation: shimmer 1.5s;
            opacity: 1;
}

.cta-btn:hover {
background: rgba(255, 255, 255, 0.95);
            box-shadow: 
                0 0 40px rgba(235, 234, 232, 0.8),
                0 12px 48px rgba(0, 0, 0, 0.25),
                inset 0 1px 0 rgba(255, 255, 255, 1);
            transform: translateY(-4px);
}

.cta-btn:active {
transform: translateY(-2px);
}

/* Shimmer animation */
        @keyframes shimmer {
0% {
                background-position: -200% center;
                opacity: 0;
            }
            50% {
                opacity: 1;
            }
            100% {
                background-position: 200% center;
                opacity: 0;
            }
}

@media (max-width: 768px) {

  .intro-section {
  grid-template-columns: 1fr;
                padding: 1.5rem;
  }

}

@keyframes shimmer {

  0% {
  background-position: -200% center;
                opacity: 0;
  }

  50% {
  opacity: 1;
  }

  100% {
  background-position: 200% center;
                opacity: 0;
  }

}
