h1{
    font-family: "ars-nova", serif;
font-weight: 400;
    font-size: 50px;
font-style: normal;   
} 

.purple{
    color:#3e0a4d;
    text-align:center;
    text-shadow: 
    3px 3px 0 #c290d0,   /* Thicker main shadow */
    -3px -3px 0 #c290d0, /* Covering the top-left */
    3px -3px 0 #c290d0,  /* Covering the top-right */
    -3px 3px 0 #c290d0,
       6px 6px 5px #8e42a4,   /* Thicker main shadow */
    -6px -6px 5px #8e42a4, /* Covering the top-left */
    6px -6px 5px #8e42a4,  /* Covering the top-right */
    -6px 6px 5px #8e42a4;  /* Covering the bottom-left */
}

h2{
font-family: "eckmannpsych-small", sans-serif;
font-weight: 400;
font-style: normal;
    text-align: center;
        color:#3e0a4d;
    margin: 10px 0 0;
    font-size: 36px
}

hr{
    border:none;
    background-color:  #3e0a4d;
    height: 5px;
}
.transition-lines-a{
    height:10px
}
.transition-lines-b{
    height: 8px;
}
p{
font-family: "chandler-42-regular", sans-serif;
font-weight: 400;
font-style: normal;
}

.logo{
    padding: 20px;
    max-width: 500px;
   
}

header{
    background-image: url(images/header.jpg);
    background-size: cover; 
    justify-content: center;
    text-align: center;
}

.hero{
    background-image: url(images/TV-guy-hero.jpg);
    padding:25px 25px 110px 65px;
    background-repeat: no-repeat;
    background-color: #3e0a4d;
    height: 300px;
    background-position-x: center;    
    color:#c68b83;
}

.tv-text{
    padding: 2px 70px 50px 0;
    text-align: center;
}

.tvp{
    font-size: 14px;
    margin-top: 0;
}

.tv-header{
    font-size: 28px;
        margin: 15px 10px 0 0
}
.info-full{
    padding-bottom: 15px;
}

.info{
    text-align: center;
    color:#3e0a4d;
    margin: 0 10px 8px
    
}

body{
    margin:0;
    background-color: #c68b83;

}

footer{
    padding: 0 10px;
    background-color: #3e0a4d; 
    text-align: center;
    background-image: url(images/footer.jpg);
        background-size: cover; 
}




/*
 * 1. MAIN GRID CONTAINER
 * Sets the large left panel and the right column side-by-side.
 */
.image-grid {
    display: flex; /* Activate Flexbox */
    gap: 10px; /* Space between the left panel and the right column */
    width: 100%; /* Or set a specific width for the entire grid */
    max-width: 500px; /* Example size */
    margin: 0 auto; /* Center the grid on the page */
}


.double-stroked-number {
  color: #3e0a4d; 
  font-size: 50px; /* Make the text large */
  
  /* Apply a thick stroke using multiple shadows */
  text-shadow: 
    3px 3px 0 #c290d0,   /* Thicker main shadow */
    -3px -3px 0 #c290d0, /* Covering the top-left */
    3px -3px 0 #c290d0,  /* Covering the top-right */
    -3px 3px 0 #c290d0,
       6px 6px 5px #8e42a4,   /* Thicker main shadow */
    -6px -6px 5px #8e42a4, /* Covering the top-left */
    6px -6px 5px #8e42a4,  /* Covering the top-right */
    -6px 6px 5px #8e42a4;  /* Covering the bottom-left */

}

/*
 * 2. RIGHT COLUMN CONTAINER
 * Stacks the two smaller panels vertically.
 */
.right-column {
    display: flex; /* Activate Flexbox */
    flex-direction: column; /* Stack the children vertically */
    gap: 10px; /* Space between the two right-side images */
    flex: 1; /* Allows this column to take up the remaining space */
}

/*
 * 3. GRID PANELS (Images)
 * Defines the size for the left panel and ensures the right panels fill their space.
 */
.grid-panel {
    /* Ensures the image content fills the container */
    overflow: hidden; 
    /* Optional: add the purple border effect you have in the image */
    border: 5px solid #3e0a4d; 
    border-radius: 8px; /* Subtle rounding for the corners */
}

/* Set the width of the large left panel */
.large-left {
    flex: 1; /* Gives the left panel proportionally more space (e.g., 2/3 of the total width) */
    /* Alternatively: width: 66%; */
}

/* Set the height of the two smaller panels on the right */
.small-top-right{
    flex: 1;
}
.small-bottom-right {
    flex: 1; /* Makes both right panels equal height */
}

/* Image Reset: Ensures the image fills its container without distortion */
.grid-panel img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; /* This is key! It fills the container while maintaining aspect ratio. */
}




.entire-calander {
    background-color: #c68b83; /* Background color from the image */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    margin-bottom: 30px;
    
    font-family: sans-serif; /* A generic sans-serif to resemble the reference */
}

/* Calendar Container */
.calendar-container {
    background-color: #e8d3ee; /* Darker purple for the main calendar background */
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 350px; /* Adjust width as needed */
    margin-bottom: 20px;
    outline-style: solid;
    outline-width: 5px;
    outline-color: #3e0a4d;
}

/* Calendar Header */
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 15px;
    border-radius: 10px;
}

.nav-arrow {
    color: #3e0a4d; /* Light color for arrows */
    font-size: 24px;
    cursor: pointer;
    font-weight: bold;
}

.nav-arrow:hover{
    cursor: pointer;
    
}

.month-display {
    color: #3e0a4d; /* Light color for month display */
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 1px;
    font-family: "ars-nova", serif;
}

/* Calendar Grid */
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px; /* Spacing between days */
}

.day-label { /* Slightly lighter purple for day labels */
    color: #3e0a4d;
    padding: 5px 0;
    text-align: center;
    font-weight: bold;
    border-radius: 8px;
    font-size: 24px;
    font-family: "ars-nova", serif;
}

.day-box {
    background-color: #e6aba3; /* Day box background color */
    color: #3e0a4d;
    padding: 10px 0;
    text-align: center;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: box-shadow 0.2s, outline 0.2s;
    box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.day-box:hover {
    outline: 3px solid #3e0a4d; /* Purple outline on hover */
    outline-offset: -3px; /* Keep outline inside the box */
}

.empty-day {
    background-color: #a85e54; /* Match container background for empty cells */
    border-radius: 8px;
}

/* Next Button */
.next-button {
   /* Light pinkish purple for the button */
    
    padding: 12px 20px;
    text-align: center;
     background-color:#3e0a4d; /* Lighter on hover */
    color: #e8d3ee;
    outline-style: solid;
    
    border-radius: 10px;
    margin-top: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s, outline .2s;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    font-family: "ars-nova", serif;

}

.next-button:hover {
    color: #3e0a4d; /* Dark purple text */
    outline-style: solid;
    outline-width:5px;
    border-radius: 10px;
 background-color: #e8d3ee;
    cursor:pointer;
    
}

/* Time Selection Container */
.time-selection-container {
    background-color: #e8d3ee; /* Light background for time selection */
    outline: solid;
    outline-color: #3e0a4d;
    outline-width: 5px;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 350px; /* Match calendar width */
}

.selection-prompt {
    color: #3e0a4d; /* Dark purple text */
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    font-family: "ars-nova", serif;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px; /* Spacing between time slots */
}

.time-slot {
    background-color: #e6aba3; /* Light pinkish purple for time slots */
    color: #3e0a4d; /* Dark purple text */
    padding: 15px 0;
    text-align: center;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s, box-shadow 0.2s, outline 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.time-slot:hover {
    outline: 3px solid #6a4968; /* Darker purple outline on hover */
    outline-offset: -3px;
}

/* For illustration purposes of the output */
.illustration-output {
    margin-top: 40px;
    font-size: 20px;
    color: #f7e6e5;
    background-color: #6a4968;
    padding: 15px 30px;
    border-radius: 10px;
} 

@media screen and (min-width: 1000px){
    
    .hero{
        background-image: url(images/tv-guy-desk.jpg) ;
 }    
   
    .tv-text{
        text-align: left;
            margin: 30px 0 0 20%;
    }
    
    .flex{
        display: flex;
        width: 900px;
        margin-left: auto;
        margin-right: auto;
        gap: 25px;
        margin-top: 30px;
    }
    
    .images{
        margin-top: 10px;
    }
    
    .entire-calander{
        margin: 0 0 30px 0;
    }
}

    
