/* CSS Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

/* Remove default button styles */
button {
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
}

/* Remove list styles */
ul, ol {
    list-style: none;
}

/* Variables */
:root {
    --primary-color: #d4b59e;
    --accent-color: #a67f5d;
    --bg-color: #1a1a1a;
    --text-color: #f0f0f0;
    --font-heading: 'Unbounded', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(212, 181, 158, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(166, 127, 93, 0.1) 0%, transparent 20%);
    pointer-events: none;
    z-index: -1;
}

/* Header Styles */
.header-showcase {
    display: none;
}

header {
    display: block;
    padding: 40px 20px;
    text-align: center;
    width: 100%;
    position: relative;
}

h1 {
    font-family: var(--font-heading);
    font-size: 4.5em;
    margin: 0;
    letter-spacing: 0;
    color: var(--primary-color);
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 
        3px 3px 0 #662D00,
        2px 2px 0 var(--accent-color);
    transform: rotate(-1deg);
    transition: transform 0.3s ease;
}

h1:hover {
    transform: rotate(1deg) scale(1.05);
}

header p {
    font-size: 1.2em;
    margin-top: 15px;
    font-weight: 300;
    letter-spacing: 1px;
    color: var(--accent-color);
    max-width: 600px;
    margin: 20px auto 0;
}

/* Swiper Styles */
.swiper {
    width: 90%;
    max-width: 900px;
    margin-top: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    background-color: #000;
    height: 80vh;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
}

.swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.5s ease;
}

.swiper-slide img[src*="bayview-gallery-night"] {
    width: 100%;
    height: auto;
    max-height: none;
}

.swiper-slide img:not([src*="bayview-gallery-night"]) {
    height: 100%;
    width: auto;
    max-width: none;
}

.swiper-slide:hover img {
    transform: scale(1.03);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-color);
    background: rgba(26, 26, 26, 0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(26, 26, 26, 0.95);
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 20px;
}

.swiper-pagination-bullet {
    background: var(--accent-color);
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
}

/* Content Section Styles */
.content-section {
    width: 90%;
    max-width: 900px;
    margin: 60px auto 0;
    text-align: center;
    padding: 40px 20px;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.content-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0;
    text-shadow: 
        2px 2px 0 #662D00,
        1px 1px 0 var(--accent-color);
}

.content-section p {
    font-size: 1.2em;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 20px;
    font-weight: 300;
}

.content-section p:last-child {
    margin-bottom: 0;
}

/* Share Section Styles */
.share-section {
    width: 90%;
    max-width: 900px;
    margin: 60px auto 0;
    text-align: center;
    padding: 30px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.share-section h2,
.instagram-feed h2 {
    font-family: var(--font-heading);
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0;
    text-shadow: 
        2px 2px 0 #662D00,
        1px 1px 0 var(--accent-color);
}

.payment-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    padding: 0 10px;
}

.payment-buttons .share-button {
    background: var(--accent-color);
}

.payment-buttons .share-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(166, 127, 93, 0.4);
}

.share-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
    padding: 0 10px;
}

.share-button {
    background: var(--primary-color);
    color: var(--bg-color);
    border: none;
    padding: 12px 20px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-size: 14px;
}

.share-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 181, 158, 0.3);
}

.share-button svg {
    width: 20px;
    height: 20px;
}

/* Email Signup Styles */
.email-signup {
    margin-top: 30px;
}

.email-signup p {
    color: var(--text-color);
    margin-bottom: 20px;
}

.email-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.email-input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.email-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

.email-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.submit-button {
    background: var(--accent-color);
    color: var(--bg-color);
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(166, 127, 93, 0.3);
}

/* Instagram Feed Styles */
.instagram-feed {
    width: 90%;
    max-width: 900px;
    margin: 40px auto 0;
    text-align: center;
}

.instagram-embed {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.instagram-media {
    background: var(--bg-color) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px !important;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3) !important;
}

/* Footer Styles */
footer {
    padding: 30px 15px;
    font-size: 0.9em;
    margin-top: 50px;
    text-align: center;
    width: 100%;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.95), transparent);
}

footer span {
    position: relative;
    display: inline-block;
}

footer span:hover {
    animation: glitch 0.3s infinite;
}

@keyframes glitch {
    0% { transform: translate(0) }
    20% { transform: translate(-2px, 2px) }
    40% { transform: translate(-2px, -2px) }
    60% { transform: translate(2px, 2px) }
    80% { transform: translate(2px, -2px) }
    100% { transform: translate(0) }
}

/* Font Classes */
.outfit {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.syne {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
}

.darker {
    font-family: 'Darker Grotesque', sans-serif;
    font-weight: 800;
}

.supreme {
    font-family: 'Supreme', sans-serif;
    font-weight: 800;
}

.clash-display, .zodiak, .chillax, .switzer {
    display: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    h1 {
        font-size: 3em;
    }

    header p {
        font-size: 1em;
        padding: 0 20px;
    }

    .swiper {
        width: 95%;
    }

    .content-section {
        padding: 30px 15px;
    }

    .content-section h2 {
        font-size: 2em;
    }

    .content-section p {
        font-size: 1.1em;
    }

    .share-section {
        width: 95%;
        padding: 20px 15px;
        margin: 30px auto 0;
    }

    .share-section h2,
    .instagram-feed h2 {
        font-size: 2em;
        margin-bottom: 20px;
    }

    .share-buttons {
        flex-direction: column;
        gap: 10px;
        padding: 0;
    }

    .share-button {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
    }

    .payment-buttons {
        margin-bottom: 15px;
        padding: 0;
    }

    .payment-buttons .share-button {
        width: 100%;
        margin-bottom: 0;
    }

    .instagram-feed {
        margin: 30px auto 0;
    }

    .email-form {
        flex-direction: column;
        padding: 0 10px;
    }

    .email-input, .submit-button {
        width: 100%;
    }
} 