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

body {
    font-family: 'Ibm Plex Serif','Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Marble texture background */
.marble-bg {
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 25%, #f0f0f0 50%, #e5e5e5 75%, #f8f8f8 100%);
    background-size: 400px 400px, 300px 300px, 100% 100%;
}

.message {
    background-color: white;
    color: rgb(0, 0, 0);
    padding: 15px 20px;
    text-align: center;
    font-weight: 500;
    position: absolute;
    inset: 0 0 auto 0;
    height: 66px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.3s ease-out;
    animation: slideDown 0.3s ease-out;
}

/* Header Section */
.header {
    background: url('https://res.cloudinary.com/dyol4iqcw/image/upload/v1750671488/background_vzy4mv.jpg');
    background-size: cover;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.header img {
    width: 100%;
    object-fit: cover;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255, 215, 0, 0.03) 2px,
            rgba(255, 215, 0, 0.03) 4px
        );
    pointer-events: none;
}

.brand-name {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.brand-tagline {
    font-size: 2rem;
    opacity: 0.9;
    font-weight: 300;
    color: #e8e8e8;
    position: relative;
    z-index: 1;
}

/* Quick Info Section */
.info-section {
    background: 
        radial-gradient(circle at 25% 75%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, #ffffff 0%, #f8f8f8 25%, #ffffff 50%, #f5f5f5 75%, #ffffff 100%);
    padding: 60px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.info-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 15px;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 70%),
        linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: rgba(255, 215, 0, 0.4);
}

.info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    border: 2px solid #FFD700;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFD700;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.info-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.info-description {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
}

/* Portfolio Section */
.portfolio-section {
    padding: 80px 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.04) 0%, transparent 50%),
        linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 25%, #1a1a1a 50%, #2c2c2c 75%, #1a1a1a 100%);
    color: #ffffff;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.portfolio-card {
    text-decoration: none;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%),
        linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.2);
}

.portfolio-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #999;
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
}

.portfolio-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.1) 10px,
            rgba(255, 255, 255, 0.1) 20px
        );
}

.portfolio-content {
    padding: 30px;
    color: #1a1a1a;
}

.portfolio-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.portfolio-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.portfolio-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 25px;
}

.portfolio-tag {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: #FFD700;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.portfolio-link {
    border: none;
    font-size: 16px;
    font-family: 'Ibm Plex Serif';
    display: inline-block;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-link:hover {
    cursor: pointer;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

/* Booking Section */
.booking-section {
    padding: 80px 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.04) 0%, transparent 50%),
        linear-gradient(135deg, #f8f8f8 0%, #ffffff 25%, #f5f5f5 50%, #ffffff 75%, #f8f8f8 100%);
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
    position: relative;
}

.section-title.white {
    color: #ffffff;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

.section-subtitle.white {
    color: #e8e8e8;
}

.booking-container {
    max-width: 800px;
    margin: 0 auto;
    background: 
        radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.booking-header {
    background: 
        linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    color: #ffffff;
    padding: 35px;
    text-align: center;
    position: relative;
}

.booking-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 3px,
            rgba(255, 215, 0, 0.05) 3px,
            rgba(255, 215, 0, 0.05) 6px
        );
    pointer-events: none;
}

.booking-header h3 {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    font-weight: 600;
}

.booking-form {
    padding: 50px 40px;
}

.form-group {
    margin-bottom: 35px;
}

.form-label {
    display: block;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-size: 1.1rem;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: 
        radial-gradient(circle at 95% 5%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        #ffffff;
}

.form-input:focus {
    outline: none;
    border-color: #FFD700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

/* Calendar Styles */
.calendar-container {
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.03) 0%, transparent 70%),
        #ffffff;
}

.calendar-header {
    background: 
        linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    padding: 20px;
    text-align: center;
    font-weight: 700;
    color: #FFD700;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    font-size: 1.2rem;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.calendar-day-header {
    padding: 15px 10px;
    text-align: center;
    font-weight: 700;
    background: 
        linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    color: #1a1a1a;
    font-size: 14px;
    border-bottom: 1px solid #d0d0d0;
}

.calendar-day {
    padding: 18px 12px;
    text-align: center;
    border: 1px solid #e8e8e8;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 600;
    background: #ffffff;
}

.calendar-day:hover {
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%),
        #f9f9f9;
}

.calendar-day.available {
    background: #ffffff;
    color: #1a1a1a;
}

.calendar-day.available:hover {
    background: 
        linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a1a;
    font-weight: 700;
    transform: scale(1.05);
}

.calendar-day.selected {
    background: 
        linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: #FFD700;
    font-weight: 700;
}

.calendar-day.unavailable {
    background: 
        linear-gradient(135deg, #f0f0f0 0%, #e5e5e5 100%);
    color: #999;
    cursor: not-allowed;
}

.calendar-day.today {
    font-weight: 800;
    border: 3px solid #FFD700;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.15) 0%, transparent 70%),
        #ffffff;
}

/* Time Slots */
.time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 15px;
    margin-top: 25px;
}

.time-slot {
    padding: 15px 12px;
    text-align: center;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.03) 0%, transparent 70%),
        #ffffff;
}

.time-slot:hover {
    border-color: #FFD700;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%),
        #f9f9f9;
    transform: translateY(-2px);
}

.time-slot.selected {
    background: 
        linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: #FFD700;
    border-color: #FFD700;
    font-weight: 700;
}

.time-slot.unavailable {
    background: 
        linear-gradient(135deg, #f0f0f0 0%, #e5e5e5 100%);
    color: #999;
    cursor: not-allowed;
    border-color: #d0d0d0;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: 
        linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
    color: #FFD700;
    border: 2px solid #FFD700;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

.submit-btn:hover::before {
    left: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .brand-name {
        font-size: 3.5rem;
    }

    .info-grid, .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .booking-form {
        padding: 30px 25px;
    }

    .calendar-day {
        padding: 12px 8px;
        font-size: 14px;
    }

    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: 2.2rem;
    }

    .portfolio-card {
        margin: 0 10px;
    }
}
