* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: white;
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    background: transparent;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background-color: #B29960;
    z-index: -1;
}

.logo-container {
    background-color: #B29960;
    padding: 20px 35px 25px 40px;
    margin-left: 60px;
    border-radius: 0 0 16px 16px;
}

.logo {
    height: 125px;
    width: auto;
    filter: brightness(0) invert(1);
}

.header nav {
    display: flex;
    align-items: center;
    height: 70px;
    padding-right: 60px;
}

.menu {
    display: flex;
    gap: 40px;
    list-style: none;
}

.menu a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.menu a:hover {
    opacity: 0.7;
}

/* Program dropdown */
.menu-dropdown {
    position: relative;
}

.menu-dropdown-trigger {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s;
}

.menu-dropdown-trigger:hover {
    opacity: 0.7;
}

.menu-dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 8px;
    min-width: 200px;
    padding: 12px 0;
    background: #fff;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    z-index: 100;
}

.menu-dropdown:hover .menu-dropdown-content {
    opacity: 1;
    visibility: visible;
}

.menu-dropdown-content li {
    margin: 0;
}

.menu-dropdown-content a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: #333;
}

.menu-dropdown-content a:hover {
    background: #F8F8F8;
    color: #B29960;
    opacity: 1;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    min-height: calc(100vh - 300px);
    position: relative;
    z-index: 5;
}

.hero-text {
    text-align: center;
    transform: translateY(-60px);
}

.hero-text h1 {
    font-size: 51px;
    font-weight: 300;
    color: #B29960;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 28px;
    color: #B29960;
    font-weight: 300;
}

.bridge-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1;
}

.bridge-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Inner Pages */
body.inner-page {
    overflow: auto;
}

body.inner-page .bridge-container {
    position: relative;
    margin-top: 80px;
}

body.inner-page .main-content {
    padding: 200px 20px 60px;
    min-height: auto;
}

body.inner-page .hero-text {
    transform: none;
    margin-bottom: 60px;
}

.rsvp-subtitle {
    font-size: 18px !important;
    letter-spacing: 2px;
    font-weight: 400 !important;
}

/* Form Styles */
.form-container {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}

.rsvp-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-input {
    background-color: #F8F8F8;
    border: none;
    border-radius: 8px;
    padding: 20px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #999999;
    outline: none;
    transition: background-color 0.3s;
}

.form-input::placeholder {
    color: #999999;
    letter-spacing: 1px;
}

.form-input:focus {
    background-color: #E5E5E5;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    margin: 10px 0;
}

.form-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    width: 24px;
    height: 24px;
    min-width: 24px;
    background-color: #F8F8F8;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 2px;
    appearance: none;
    position: relative;
}

.form-checkbox input[type="checkbox"]:checked {
    background-color: #B29960;
}

.form-checkbox input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 16px;
}

.form-checkbox span {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    font-weight: 400;
}

.form-submit {
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 30px;
    padding: 16px 60px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    cursor: pointer;
    transition: opacity 0.3s;
    margin: 20px auto 0;
    display: block;
}

.form-submit:hover {
    opacity: 0.85;
}

.attend-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 20px 0 10px;
}

.attend-btn {
    flex: 1;
    max-width: 220px;
}

.attend-btn.active {
    background-color: #000000;
    color: white;
}

.attend-btn-secondary {
    background-color: #E0E0E0;
    color: #666;
}

.attend-btn-secondary:hover {
    background-color: #D0D0D0;
    opacity: 1;
}

.partner-section {
    margin-top: 30px;
    padding: 25px;
    background-color: #F8F8F8;
    border-radius: 12px;
}

.partner-checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    color: #555;
    font-weight: 400;
}

.partner-checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    accent-color: #B29960;
    cursor: pointer;
}

.partner-fields {
    margin-top: 20px;
}

.room-rate-section {
    margin-top: 30px;
    padding: 25px;
    background-color: #F8F8F8;
    border-radius: 12px;
}

.room-rate-title {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #333;
    margin-bottom: 12px;
}

.room-rate-text {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 8px;
}

.room-rate-text a {
    color: #B29960;
    text-decoration: none;
}

.room-rate-text a:hover {
    text-decoration: underline;
}

.allergy-section {
    margin-top: 30px;
}

.allergy-description {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

.form-textarea {
    width: 100%;
    resize: vertical;
    min-height: 80px;
}

/* Member Program Styles */
.program-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.coming-soon-text {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    padding: 60px 20px;
    font-style: italic;
}

.program-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.program-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.program-day {
    background-color: #F8F8F8;
    border-radius: 12px;
    padding: 30px;
}

.day-title {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #D0D0D0;
}

.program-item {
    display: flex;
    gap: 20px;
    padding: 12px 0;
    border-bottom: 1px solid #D8D8D8;
}

.program-item:last-child {
    border-bottom: none;
}

.program-time {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    min-width: 120px;
    flex-shrink: 0;
}

.program-desc {
    font-size: 14px;
    font-weight: 400;
    color: #555;
    line-height: 1.6;
}

.program-desc p {
    margin-bottom: 4px;
}

.program-desc p:last-child {
    margin-bottom: 0;
}

.program-desc .sub-text {
    font-size: 13px;
    color: #777;
}

.program-desc strong {
    font-weight: 600;
    color: #333;
}

.tower-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.tower-image img {
    width: 100%;
    max-width: 280px;
    height: auto;
}

/* Co-Hosts Section */
.cohosts-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.cohosts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.cohost-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cohost-image {
    width: 100%;
    max-width: 360px;
    margin-bottom: 25px;
}

.cohost-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

.cohost-name {
    font-size: 18px;
    font-weight: 500;
    color: #B29960;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.cohost-title {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    line-height: 1.5;
}

/* Content Page Styles */
.content-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.content-profile {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 50px;
    align-items: flex-start;
}

.profile-image {
    width: 100%;
}

.profile-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.profile-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-text p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    font-weight: 400;
}

.profile-name h3 {
    font-size: 18px;
    font-weight: 500;
    color: #B29960;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.profile-name p {
    font-size: 13px;
    font-weight: 400;
    color: #B29960;
    letter-spacing: 1.5px;
}

/* Speakers Section */
.speakers-section {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.speakers-title {
    font-size: 18px;
    font-weight: 500;
    color: #B29960;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 2px;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.speaker-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.speaker-image {
    width: 100%;
    margin-bottom: 20px;
}

.speaker-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

.speaker-name {
    font-size: 14px;
    font-weight: 500;
    color: #B29960;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.speaker-title {
    font-size: 11px;
    font-weight: 400;
    color: #B29960;
    letter-spacing: 1px;
}

/* Home Page Styles */
.welcome-text {
    font-size: 20px !important;
    font-weight: 400 !important;
    letter-spacing: 1.5px;
    margin-bottom: 15px !important;
}

.event-date {
    margin-top: 20px;
}

.hotel-link {
    margin-top: 30px !important;
}

.hotel-link a {
    color: #B29960;
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    border-bottom: 1px solid #B29960;
    padding-bottom: 2px;
    transition: opacity 0.3s;
}

.hotel-link a:hover {
    opacity: 0.7;
}

.register-button {
    display: inline-block;
    background-color: #000000;
    color: white;
    text-decoration: none;
    padding: 16px 50px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-top: 40px;
    transition: opacity 0.3s;
    position: relative;
    z-index: 10;
}

.register-button:hover {
    opacity: 0.85;
}

/* Success/Error Messages */
.success-message {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 0 auto 30px;
    max-width: 960px;
    text-align: center;
}

.error-message {
    color: #dc3545;
    font-size: 13px;
    margin-top: -15px;
    margin-bottom: 10px;
}

/* Hotel Page Styles */
.hotel-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.venue-block {
    margin-bottom: 40px;
}

.venue-divider {
    padding-top: 80px;
    border-top: 1px solid #E5E5E5;
}

.venue-header {
    text-align: center;
    margin-bottom: 60px;
}

.venue-header h2 {
    font-size: 36px;
    font-weight: 300;
    color: #333;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.venue-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #E5E5E5;
}

.venue-about-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.venue-about-text p {
    font-size: 15px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 15px;
}

.venue-address,
.venue-contact-info {
    margin-top: 25px;
}

.venue-address h4,
.venue-contact-info h4 {
    font-size: 13px;
    font-weight: 500;
    color: #B29960;
    margin-bottom: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.venue-address p,
.venue-contact-info p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

.hotel-hero {
    text-align: center;
    margin-bottom: 80px;
}

.hotel-hero h2 {
    font-size: 36px;
    font-weight: 300;
    color: #333;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.hotel-subtitle {
    font-size: 16px;
    color: #999;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0.5px;
}

.hotel-details-minimal {
    max-width: 1200px;
    margin: 0 auto 80px;
}

.hotel-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #E5E5E5;
}

.detail-block h3 {
    font-size: 14px;
    font-weight: 500;
    color: #B29960;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.detail-block p {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
}

.about-section {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #E5E5E5;
}

.about-section h3 {
    font-size: 14px;
    font-weight: 500;
    color: #B29960;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-section p {
    font-size: 15px;
    line-height: 1.9;
    color: #666;
    margin-bottom: 15px;
}

.amenities-section h3 {
    font-size: 14px;
    font-weight: 500;
    color: #B29960;
    margin-bottom: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.amenities-list-minimal {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.amenities-list-minimal li {
    font-size: 15px;
    color: #666;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.amenities-list-minimal li:before {
    content: '—';
    color: #B29960;
    position: absolute;
    left: 0;
}

.section-title {
    font-size: 14px;
    font-weight: 500;
    color: #B29960;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Hotel Map Section */
.hotel-map-section {
    margin-bottom: 80px;
}

.map-container {
    border-radius: 0;
    overflow: hidden;
}

/* Gallery Section */
.hotel-gallery {
    margin-bottom: 60px;
}

.amenities-list {
    list-style: none;
    padding: 0;
}

.amenities-list li {
    font-size: 15px;
    color: #555;
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.amenities-list li:before {
    content: '—';
    color: #B29960;
    position: absolute;
    left: 0;
}

.hotel-gallery {
    margin-bottom: 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: none;
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from { transform: scale(0.8); }
    to { transform: scale(1); }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: white;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: opacity 0.3s;
}

.lightbox-close:hover {
    opacity: 0.7;
}

.lightbox-nav {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.lightbox-prev,
.lightbox-next {
    pointer-events: auto;
    background-color: rgba(178, 153, 96, 0.8);
    color: white;
    border: none;
    font-size: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: rgba(178, 153, 96, 1);
}

/* Contact Page Styles */
.contact-container {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.contact-section h3 {
    font-size: 18px;
    font-weight: 500;
    color: #B29960;
    margin-bottom: 15px;
}

.contact-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

.contact-section a {
    color: #B29960;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.contact-section a:hover {
    border-bottom-color: #B29960;
}

/* Register Description */
.register-description {
    max-width: 800px;
    margin: 30px auto 0;
    font-size: 15px !important;
    line-height: 1.8 !important;
    color: #666 !important;
    font-weight: 400 !important;
    text-align: center;
}

/* Flight Information Section */
.flight-section {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #E5E5E5;
}

.flight-title {
    font-size: 14px;
    font-weight: 500;
    color: #B29960;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.flight-description {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.flight-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.flight-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.flight-fields {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-date,
.form-time,
.form-select {
    width: 100%;
    background-color: #F8F8F8;
    border: none;
    border-radius: 8px;
    padding: 20px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333;
    outline: none;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 45px;
}

.form-select option {
    color: #333;
}

.flight-form-container {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid #E5E5E5;
}

.flight-form-container .flight-title {
    margin-top: 0;
}

.form-single {
    margin-bottom: 20px;
}

.form-single .form-input {
    width: 100%;
}

.form-submit-secondary {
    margin-top: 10px;
}

.flight-section .form-group {
    margin-bottom: 0;
}

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #999;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.form-textarea {
    width: 100%;
    background-color: #F8F8F8;
    border: none;
    border-radius: 8px;
    padding: 20px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: #333;
    resize: vertical;
    outline: none;
    min-height: 120px;
}

.form-textarea::placeholder {
    color: #999;
}

/* Bio Modal */
.bio-card {
    cursor: pointer;
}

.bio-card:hover .cohost-image img,
.bio-card:hover .speaker-image img {
    opacity: 0.85;
    transition: opacity 0.3s;
}

.bio-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 30px;
    animation: fadeIn 0.2s;
}

.bio-modal-inner {
    background: #fff;
    border-radius: 16px;
    max-width: 720px;
    width: 100%;
    padding: 50px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.bio-modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 36px;
    font-weight: 300;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.bio-modal-close:hover {
    color: #B29960;
}

.bio-header {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 35px;
    padding-bottom: 30px;
    border-bottom: 1px solid #E5E5E5;
}

.bio-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.bio-name {
    font-size: 24px;
    font-weight: 500;
    color: #B29960;
    margin-bottom: 8px;
    margin-top: 10px;
}

.bio-title {
    font-size: 14px;
    color: #666;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.bio-text p {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 20px;
}

.bio-text p:last-child {
    margin-bottom: 0;
}

/* Photos Page */
.photos-container {
    max-width: 1200px;
    margin: 0 auto;
    min-height: 300px;
}

.photos-placeholder {
    text-align: center;
    font-size: 16px;
    color: #999;
    padding: 80px 20px;
}

/* Footer Styles */
.hosted-by-strip {
    width: 100%;
    background-color: #9A7E46;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 14px 20px;
}

.home-hosted-strip {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #9A7E46;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 12px 20px;
    z-index: 20;
}

.site-footer {
    background-color: #B29960;
    color: #fff;
    padding: 80px 40px 30px;
    margin-top: 0;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.footer-logo {
    height: 80px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: rgba(255,255,255,0.8) !important;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.8);
    margin-bottom: 8px;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    display: inline-block;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.3);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    padding-bottom: 10px;
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

body.menu-open .hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

body.menu-open .hamburger span:nth-child(2) {
    opacity: 0;
}

body.menu-open .hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   RESPONSIVE - TABLET (max-width: 1024px)
   ============================================= */
@media (max-width: 1024px) {
    .logo-container {
        margin-left: 20px;
        padding: 15px 20px 18px 25px;
    }

    .logo {
        height: 90px;
    }

    .header nav {
        padding-right: 20px;
    }

    .menu {
        gap: 20px;
    }

    .menu a {
        font-size: 14px;
    }

    .hero-text h1 {
        font-size: 40px;
    }

    .hero-text p {
        font-size: 22px;
    }

    body.inner-page .main-content {
        padding: 160px 20px 40px;
    }

    .program-columns {
        gap: 25px;
    }

    .cohosts-grid {
        gap: 30px;
    }

    .content-profile {
        grid-template-columns: 280px 1fr;
        gap: 30px;
    }

    .speakers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .venue-about {
        gap: 30px;
    }

    .hotel-grid {
        gap: 30px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .site-footer {
        padding: 60px 30px 30px;
    }
}

/* =============================================
   RESPONSIVE - MOBILE (max-width: 768px)
   ============================================= */
@media (max-width: 768px) {
    /* Hamburger Menu */
    .hamburger {
        display: flex;
    }

    .header nav {
        padding-right: 15px;
    }

    .menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        z-index: 100;
        padding: 80px 20px 40px;
    }

    body.menu-open .menu {
        display: flex;
    }

    .menu li {
        width: 100%;
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .menu a {
        font-size: 18px;
        display: block;
    }

    .menu-dropdown-trigger {
        font-size: 18px;
    }

    .menu-dropdown-content {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0;
        margin-top: 0;
        min-width: auto;
        transition: max-height 0.3s, opacity 0.3s, visibility 0.3s;
    }

    .menu-dropdown.open .menu-dropdown-content {
        opacity: 1;
        visibility: visible;
        max-height: 200px;
        padding: 10px 0 0;
        margin-top: 10px;
    }

    .menu-dropdown:hover .menu-dropdown-content {
        opacity: 0;
        visibility: hidden;
        max-height: 0;
    }

    .menu-dropdown.open:hover .menu-dropdown-content {
        opacity: 1;
        visibility: visible;
        max-height: 200px;
    }

    .menu-dropdown-content a {
        color: rgba(255,255,255,0.7);
        font-size: 15px;
        padding: 8px 0;
    }

    .menu-dropdown-content a:hover {
        background: transparent;
        color: #fff;
    }

    /* Header & Logo */
    .logo-container {
        margin-left: 15px;
        padding: 12px 18px 15px 20px;
    }

    .logo {
        height: 65px;
    }

    .header::before {
        height: 60px;
    }

    .header nav {
        height: 60px;
    }

    /* Home Page */
    body {
        overflow: auto;
    }

    .main-content {
        min-height: 100vh;
        padding: 0 15px;
    }

    .hero-text {
        transform: translateY(-30px);
    }

    .hero-text h1 {
        font-size: 30px;
        margin-bottom: 15px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .welcome-text {
        font-size: 16px !important;
    }

    .register-button {
        padding: 14px 35px;
        font-size: 13px;
        margin-top: 25px;
    }

    .home-hosted-strip {
        font-size: 13px;
        padding: 10px 15px;
    }

    .bridge-container {
        z-index: 1;
    }

    /* Inner Pages */
    body.inner-page .main-content {
        padding: 120px 15px 30px;
    }

    body.inner-page .hero-text {
        margin-bottom: 30px;
    }

    body.inner-page .bridge-container {
        margin-top: 40px;
    }

    .rsvp-subtitle {
        font-size: 15px !important;
    }

    /* Forms */
    .form-container {
        max-width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .form-input {
        padding: 16px 18px;
    }

    .attend-buttons {
        flex-direction: column;
        align-items: center;
    }

    .attend-btn {
        max-width: 100%;
        width: 100%;
    }

    .form-submit {
        padding: 14px 40px;
        font-size: 13px;
    }

    .partner-section {
        padding: 20px;
    }

    .register-description {
        font-size: 14px !important;
    }

    /* Flight Section */
    .flight-row {
        grid-template-columns: 1fr;
    }

    /* Program */
    .program-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .program-day {
        padding: 20px;
    }

    .program-item {
        flex-direction: column;
        gap: 5px;
    }

    .program-time {
        min-width: auto;
    }

    /* Co-Hosts */
    .cohosts-section {
        margin-bottom: 40px;
    }

    .cohosts-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Content / Profile */
    .content-section {
        margin-bottom: 40px;
    }

    .content-profile {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .content-profile .profile-image {
        max-width: 300px;
        margin: 0 auto;
    }

    /* Speakers */
    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .speakers-title {
        margin-bottom: 30px;
    }

    /* Hotel / Venues */
    .venue-header h2,
    .hotel-hero h2 {
        font-size: 26px;
    }

    .venue-header {
        margin-bottom: 30px;
    }

    .hotel-hero {
        margin-bottom: 40px;
    }

    .venue-about {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .hotel-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
        padding-bottom: 30px;
    }

    .hotel-details-minimal {
        margin-bottom: 40px;
    }

    .venue-divider {
        padding-top: 40px;
    }

    .amenities-list-minimal {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-item img {
        height: 180px;
    }

    .hotel-map-section {
        margin-bottom: 40px;
    }

    .hotel-map-section iframe {
        height: 300px !important;
    }

    /* Lightbox */
    .lightbox-close {
        top: 15px;
        right: 15px;
        font-size: 36px;
    }

    .lightbox-nav {
        padding: 0 10px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 28px;
    }

    /* Contact */
    .contact-info {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    /* Bio Modal */
    .bio-modal {
        padding: 15px;
    }

    .bio-modal-inner {
        padding: 30px 20px;
    }

    .bio-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .bio-photo {
        width: 100px;
        height: 100px;
    }

    .bio-name {
        font-size: 20px;
    }

    /* Footer */
    .site-footer {
        padding: 40px 20px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .footer-logo-section {
        align-items: center;
    }

    .footer-logo {
        height: 60px;
    }

    .footer-bottom {
        padding-top: 25px;
    }

    .hosted-by-strip {
        font-size: 13px;
        padding: 12px 15px;
    }

    /* Login Page */
    .login-form .form-input {
        width: 100%;
    }
}

/* =============================================
   RESPONSIVE - SMALL MOBILE (max-width: 480px)
   ============================================= */
@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 24px;
    }

    .hero-text p {
        font-size: 15px;
    }

    .welcome-text {
        font-size: 14px !important;
    }

    .register-button {
        padding: 12px 30px;
        font-size: 12px;
    }

    .speakers-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .speaker-image {
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 220px;
    }

    .venue-header h2,
    .hotel-hero h2 {
        font-size: 22px;
    }

    body.inner-page .main-content {
        padding: 110px 12px 25px;
    }

    .program-day {
        padding: 15px;
    }

    .form-submit {
        padding: 14px 30px;
        width: 100%;
    }
}
