/* Roy Coffee Co Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff9f1;
    color: #333;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.02) 2px,
            rgba(0, 0, 0, 0.02) 4px
        ),
        linear-gradient(90deg, 
            #2C181C 0px, 
            #2C181C 70px, 
            transparent 70px, 
            transparent 90px, 
            #622221 90px, 
            #622221 93px, 
            transparent 93px, 
            transparent 113px
        );
    background-size: 
        20px 20px,
        113px 50px;
    background-repeat: 
        repeat,
        repeat-x;
    background-position: 
        0 0,
        top;
    position: relative;
}

body::after {
    content: '';
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background-image: 
        linear-gradient(90deg, 
            #2C181C 0px, 
            #2C181C 70px, 
            transparent 70px, 
            transparent 90px, 
            #622221 90px, 
            #622221 93px, 
            transparent 93px, 
            transparent 113px
        );
    background-size: 113px 50px;
    background-repeat: repeat-x;
    background-position: bottom;
}

h1 {
    color: #8B4513;
    text-align: center;
    margin: 70px 0 30px 0;
    padding: 0 20px;
}

.logo-container {
    text-align: center;
    margin: 100px 0 30px 0;
}

.logo {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    transform: scale(0.64);
}

.mission-container {
    text-align: center;
    margin: 30px auto;
    padding: 0 20px;
    max-width: 510px;
}

.mission-text {
    font-size: 18px;
    font-weight: bold;
    color: #2C181C;
    line-height: 1.4;
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.columns-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.column {
    flex: 1;
    max-width: 500px;
}

.column p {
    color: #333;
    line-height: 1.6;
    margin: 0;
    text-align: justify;
}

p {
    line-height: 1.6;
    margin-bottom: 15px;
    padding: 0 20px;
}

strong {
    color: #8B4513;
    font-weight: bold;
} 

.weight-700 {
    font-weight: 700 !important;
}

.cormorant-garamond {
    font-family: "Cormorant Garamond", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  }

.ibm-plex-sans {
  font-family: "IBM Plex Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.coffee-details {
  text-align: center !important;
}

.laylo-container {
    max-width: 510px;
    margin: 30px auto;
    padding: 0 20px;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .logo-container {
        margin: 50px 0 20px 0;
    }
    
    .logo {
        transform: scale(0.5);
    }
    
    .mission-container {
        margin: 20px auto;
        padding: 0 15px;
    }
    
    .mission-text {
        font-size: 16px;
    }
    
    .laylo-container {
        margin: 20px auto;
        padding: 0 15px;
    }
    
    p {
        padding: 0 15px;
    }
}

@media screen and (max-width: 480px) {
    .logo-container {
        margin: 30px 0 15px 0;
    }
    
    .logo {
        transform: scale(0.4);
    }
    
    .mission-container {
        margin: 15px auto;
        padding: 0 10px;
    }
    
    .mission-text {
        font-size: 14px;
    }
    
    .laylo-container {
        margin: 15px auto;
        padding: 0 10px;
    }
    
    p {
        padding: 0 10px;
    }
}