/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1d1d1f;
    background-color: #fbfbfd;
}

/* Header styles */
header {
    background: none;
    color: #1d1d1f;
    padding: 0;
}

.hero {
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-overlay {
    min-height: 100vh;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    color: white;
}

.hero-text-container {
    max-width: 600px;
}

.hero-title {
    position: relative;
    margin-bottom: 2rem;
}

.subtitle-top {
    display: block;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    color: #ffd1dc;
    font-weight: 300;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    line-height: 1.1;
    margin: 0;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.title-accent {
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #ffd1dc, transparent);
    margin-top: 1.5rem;
}

.tagline {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 3rem;
    line-height: 1.4;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-feature i {
    font-size: 1.5rem;
    color: #ffd1dc;
}

.hero-feature span {
    font-size: 1rem;
    font-weight: 500;
}

.hero-cta {
    margin-top: 3rem;
    display: flex;
    gap: 1.5rem;
}

.cta-primary, .cta-secondary {
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-primary {
    background: #ffd1dc;
    color: #1d1d1f;
}

.cta-secondary {
    border: 2px solid #ffd1dc;
    color: white;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255,209,220,0.4);
}

.cta-secondary:hover {
    background: rgba(255,209,220,0.1);
    transform: translateY(-2px);
}

/* Main content */
main {
    padding: 2rem 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

section {
    background: white;
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

h2 {
    font-family: 'Playfair Display', serif;
    color: #1d1d1f;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

/* Location section */
.location {
    position: relative;
    overflow: visible;
}

.location-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ffd1dc, #ffb6c1);
    color: #1d1d1f;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(255,209,220,0.3);
    align-self: flex-start;
}

.location-badge i {
    color: #ff6b6b;
}

.address-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(0,0,0,0.05);
}

.address-icon {
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff6b6b;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.address-text {
    flex: 1;
}

.address-text .label {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.address-text p {
    color: #1d1d1f;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.directions-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.directions-link:hover {
    color: #ff4f4f;
    transform: translateX(3px);
}

.distance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.distance-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.distance-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.distance-item i {
    font-size: 1.25rem;
    color: #ff6b6b;
    width: 24px;
    text-align: center;
}

.distance-info {
    display: flex;
    flex-direction: column;
}

.distance {
    font-weight: 600;
    color: #1d1d1f;
}

.place {
    font-size: 0.9rem;
    color: #666;
}

@media (max-width: 768px) {
    .location-header {
        gap: 1rem;
    }
    
    .distance-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .distance-grid {
        grid-template-columns: 1fr;
    }
    
    .address-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .directions-link {
        justify-content: center;
    }
}

/* Features grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: #fafafa;
    border-radius: 15px;
    transition: transform 0.2s;
}

.feature-item:hover {
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

/* Contact buttons */
.cta-container {
    display: grid;
    gap: 1rem;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1d1d1f;
    color: white;
    text-decoration: none;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 500;
    transition: all 0.2s;
}

.cta-button .icon {
    margin-right: 0.5rem;
}

.whatsapp {
    background: #25D366;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    color: #86868b;
    font-size: 0.9rem;
}

/* Desktop styles */
@media (min-width: 768px) {
    header {
        padding: 0;
    }

    .hero {
        padding: 8rem 2rem;
    }

    .hero-overlay {
        padding: 4rem 2rem;
    }

    h1 {
        font-size: 3.5rem;
    }

    .tagline {
        font-size: 1.8rem;
    }

    main {
        padding: 3rem 2rem;
    }

    .cta-container {
        grid-template-columns: 1fr 1fr;
    }

    section {
        padding: 3rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

section {
    animation: fadeIn 0.6s ease-out;
}

/* Soft transitions */
.feature-item, .cta-button {
    transition: all 0.3s ease;
}

/* Instagram-style Gallery */
.gallery-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin-bottom: 2rem;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    cursor: pointer;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-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 ease;
}

.overlay-text {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    padding: 0.5rem;
}

.gallery-item:hover .image-overlay {
    opacity: 1;
}

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

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 1rem;
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
    margin: auto;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: contain;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

#modalCaption {
    color: white;
    text-align: center;
    padding: 1rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
}

/* Responsive Gallery */
@media (max-width: 768px) {
    .instagram-grid {
        gap: 2px;
    }

    .overlay-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Instagram Embed Container */
.instagram-embed {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

/* Update text colors to ensure readability */
.hero h1, 
.hero .tagline, 
.hero .subtitle {
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Maps Container */
.maps-container {
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.maps-container iframe {
    display: block;
    width: 100%;
}

.maps-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: #1d1d1f;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.maps-link:hover {
    background: #2d2d2f;
}

.maps-link i {
    color: #ff6b6b;
}

/* Instagram Follow Button */
.instagram-follow {
    margin-top: 1.5rem;
    text-align: center;
}

.instagram-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.instagram-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.instagram-button i {
    font-size: 1.2rem;
}

/* Decorative Elements */
.decorative-corner {
    position: absolute;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.3);
}

.decorative-corner.top-left {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.decorative-corner.top-right {
    top: 20px;
    right: 20px;
    border-left: none;
    border-bottom: none;
}

.decorative-corner.bottom-left {
    bottom: 20px;
    left: 20px;
    border-right: none;
    border-top: none;
}

.decorative-corner.bottom-right {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

.hero-badge {
    background: rgba(255,255,255,0.9);
    color: #ff6b6b;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
    display: inline-block;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Enhanced Section Styling */
section {
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ffd1dc, #f7cac9);
    opacity: 0.5;
}

/* Enhanced Feature Items */
.feature-item {
    background: linear-gradient(135deg, #fff, #f8f8f8);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.feature-icon {
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: rgba(255,209,220,0.2);
    border-radius: 50%;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Enhanced Gallery */
.gallery-item {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
}

/* Enhanced Contact Buttons */
.cta-button {
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.1), rgba(255,255,255,0));
    transition: 0.5s;
}

.cta-button:hover::after {
    left: 100%;
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

.feature-item {
    animation: float 3s ease-in-out infinite;
}

/* Enhanced Maps Container */
.maps-container {
    position: relative;
}

.maps-container::before {
    content: '📍';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
    z-index: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .tagline {
        font-size: 1.4rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
}

/* Add at the top of the file, after the reset styles */
html {
    scroll-behavior: smooth;
}

/* Add padding-top to the sections to account for the header height */
section[id] {
    scroll-margin-top: 2rem;
} 